I’m trying to access some data from a request that is being made: ?sm-xml-search=1
I really don’t know the best way to “hook” or “bind” onto this request … since I can’t seem to bind to the actual click event. My attempts at binding to an event just doesn’t respond. So that’s why I need to respond to the actual HTTP request.
How might I extract this information each time it’s requested?
Is there not a way to extract data from a call?
jQuery('div.result').live("click", function(event) {That works perfectly.