I am currently using window.location for client-side redirection in jQuery. Is there any equivalent syntax to do client-side redirection?
+7
A:
You still can do that. JQuery is built upon JavaScript and the DOM.
Daniel A. White
2009-10-20 12:53:17
+1
A:
window.location
is provided by the browser's DOM, not jQuery. So if jQuery is not present, it matters not one bit.
Anthony Mills
2009-10-20 12:59:33
+5
A:
If you're going to use jQuery, you should appreciate that all it is is a library that makes some JavaScript tasks easier. Don't try and use it for every JavaScript task under the sun.
Tim Down
2009-10-20 13:02:58