Skip to content Skip to sidebar Skip to footer

Deep Linking With Ajax Does Not Work With Latest - Jquery Address

I would like to know why jquery address is not working with the latest jQuery verison, or maybe what I'm doing wrong. I mean the samples given in the download folder are working we

Solution 1:

First of all you always should load jQuery before you load any jQuery plugins. In the linked example you do it in the wrong order. But regarding to the error you got you probably did it right while testing.

The next problem is that jQuery.address makes use of jQuery.browser which has been removed since jQuery 1.9. In order to circumvent such issues and make migration a lot easier, there is a jQuery migration plugin that provides missing functions from older jQuery versions.

<scriptsrc="jquery-2.1.3.js"></script><scriptsrc="jquery-migrate-1.2.1.js"></script><scriptsrc="jquery.address-1.5.js?strict=false&wrap=true"></script>

Post a Comment for "Deep Linking With Ajax Does Not Work With Latest - Jquery Address"