is there a way to track an event, on which page it was assign from?
e.g.
mypage.js
$(function(){
$('selector').click(function (){
// blabla
})
})
What I need is when I click somewhere I can track it which page it was binded from jquery.
My problem is that I don’t know on which page the event is bound or searching for it is proving difficult I was wondering that when I do click on something to track what happened where. like php backtracking.
You can pass window.location to the monitoring script, ie:
You can also add location.hash if you are using hashes: