Sometimes, it just doesn't do what I told it to do. It works perfectly in firefox and IE, but chrome just ignore the instructions. Even something as simple as:
$(window).load( function(){
alert( 'hello world!' );
});
I think the problem is when I try to use 2 $(window).load()
Is anyone else experiencing this problem or is just me? I mean, does this "bug" actually exists or am I doing something wrong?
$(document).ready( function(){})or$( function(){})run before my map object is ready. I can solve this with asetTimeout, but it just looks very hacky to me. – Erik Escobedo Jul 27 '10 at 20:29