I have recently used the Asual Jquery Address v.1.3 and it workes successfully with Firefox but I found the following problem in the Chrome: it can't fire the ExternalChangeFunction envent and there is no alternative from using this event because document.ready fires again when trying to change the address by this script plugin
$.address.externalChange(function(event) {
search.showAdvancedContent();
});
var search = {
showAdvancedContent: function(){
// My code
}
};
Had the same problem. For me, it turned out to be a version incompatibility: jQuery 1.3.2 and Address 1.3 work together in Ffox but not in Chrome. Upgrading to jQuery 1.4.2 resolved the issue.