Posts

Showing posts from December, 2011

Reserve word in JQuery

I was wondering myself about this the other day when I was trying to resolve an issue where the JQuery AJAX async callback doesn't trigger the session state timeout routine of the .NET properly. I was getting a lot of issues with it particularly because I set a parameter name in the JQuery AJAX call to be "jquery". This actually will cause the JQuery AJAX failed to work. So after I tried to change the parameter to another name, then it works. I was thinking to myself, it could be that the word jquery is a reserved word, so I tried to see if I could find any reference to the reserved keyword in JQuery, but can't find any. So, ought to write it down here to have a reference to remember that I have faced this issue before.