I want to send an URL to a server. The URL is encrypted and the server will recognize it. Unfortunately some chars are added to the URL, here: /event/seq/1/onclick. How did this happen? I am using JQuery, maybe that is responsible for this behaviour? Thanks in advance.
Share
You can see exactly what happens in jquery (and javascript in general) by adding a breakpoint just before the problematic call in Firebug or the built-in Chrome Inspector debugger.
Then follow the execution step by step, while watching the value of the variables of interest.
You can even switch to a non-minified “debug” jquery file while you do this just in case you end up tracing into jquery itself.