I have 2 $('.test).click
function, with same name, how do I choose which to be triggered 1st?
- this
$('.test).click(function () {})
are located in 2 different .js file, however it will be combine when in the webpage - I'm not suppose to touch the 1st .js as it's come out of box with piwik, hence the reason I use
$('.test).click(function () {})
on another js
So is there a way to decide which $('.test).click(function () {})
get triggered 1st?
Thanks