Hi guys, I'm having a very annoying issue on Firefox 3.6.8. I have this sample plugin:
(function($){
$.fn.test_plugin = function(settings){
$(this).load(function(settings){
alert('ok');
});
};
})(jQuery);
And at the bottom of the html page something like this:
$(function(){
$("#image1").test_plugin();
});
So Basically this should show na alert message fter the pages loads, and it does, except, when you type the url manually on Firefox. If I refresh the page no problem, but on redirect or manually typing the URL it's not. I got no errors and from the firebug everything seems to be fine. This only happens on FF, I got no probs on Safari, chrome, IE.
Any idea why this is ?
thanks