Hello, I'm using a simple piece of code
$("container").load(url, function(){ callback();})
to replace the content of a div container using jQuery's AJAX functionality. That appears to work well with Internet Explorer, however after trying to view it through Firefox I am getting some unexpected behaviour.
The page is fetched and placed correctly inside the div only for a moment; then the whole page appears to refresh automatically and seems to redirect itself to a page prefixed with
wyciwyg://1/http://Needless to say that it just hangs there with a blank page and nothing happens unless I click on Firefox's stop button. Are there differences between IE/Firefox that could be causing such a behaviour in jQuery? Thanks in advance for your help.