views:

52

answers:

1

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
    }
};
+1  A: 

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.

dzello
thnx a lot it's working now,but it seems jquery problem with version 1.3.2 with google chrome not Asual address plugin, I tried it with the latest ver. 1.4.3 and it's working without any problems :-)
MeqDotNet

related questions