When I load the site I'm working on, all is fine on all browsers except Firefox, which hangs on Transferring data from maps.googleapis.com...
The Google Map is rendered perfectly, but FF doesn't stop loading.
This is a big problem for me, because I have jQuery(window).load functions going.
Has anyone a clue how to solve this?
Instead of using jQuery:
$(document).ready(function(){
initialize();
});
Do this:
<body onload="initialize();">
As Google Instructions tell you to do!
This solved it for me.
You just need to update Firefox.
Related
I've a problem with a wordpress site. Out of no reason the text of a post disappears or is invisible in the frontend. As soon as you zoom out and in the text is showing! This is a problem my friend is reporting to me. I wasn't able to cause this issue by myself. I've cleared the cache and used Safari, Chrome and Firefox in the private mode as well as my friend did. For me it still sounds like a browser issue or do I miss something with this issue? I would like to give you an example but as I said I coudn't cause this issue by myself. Could it be something else except the browser he is using?
EDIT
transitionally I fixed it with this quick n dirty jQuery right above the wp_footer and the </body> tag.
<script type="text/javascript" charset="utf-8">
jQuery(function() { jQuery('body').hide().show(); });
</script>
related to this post google group
If anybody has a better approach please let me know.
I have a site I'm building, here: http://ericbrockmanwebsites.com/dev2/
I'm using Cufón because the font the client wants doesn't look very good when the user is on a Microsoft system or on Chrome. SEO is not important as it's, for the most part, not really open to the public.
The problem is that the page loads with the default font and then the cufón script kicks in a second or so later - every time a new page is loaded. Just ended up looking very sloppy.
Does anyone how to remedy this?
Any help is greatly appreciated!
cheers,
I found this answer works well, since you're using jQuery: Cufon delay in Internet Explorer
You essentially hide the text until it's rendered correctly.
How about hiding all the content until the content is loaded? ie...
In CSS, hide the body
body { display:none; }
Then in jQuery when everything is loaded and the window is ready
jQuery(window).ready(function() {
jQuery('body').css({
'display':'block'
});
});
If the website takes a little while to load you might want to consider using a pre loader instead.
I am using RadDock to open a popup. and when i post back any drop down it hangs for some time and i am retrieving data on other fields after some time.
This issue is only with this new version of chrome in the previous version it was working fantastic.
And also it is working fine with every other browser.
Can anybody give an idea what has been happing?
Thanks
This is a bug in Chrome: http://www.telerik.com/community/forums/aspnet-ajax/general-discussions/google-chrome-26-performance-issue.aspx and hopefully they will fix it with their next version.
I am using a javascript function to change image on mouseover and onmouserout in asp.net3.5, its working perfectly for firefox, chrome and safari but when i test same flyout on IE then onmouseover/onmouseout image does not change. Please help and guide me in this way.....
I am waiting for your response.
Regards
Arshad
Use onMouseLeave event for IE. This will solve the problem.
I know that my answer might be more of a comment, but not knowing what SelectImage(this,...,'k' or 'o') is and that why you'll need that kind of function, I can only provide you a vague answer because you did not provide as much details as you can, such as your C# and Javascript code.
http://www.krissteele.net/blogdetails.aspx?id=110
Recently I had some issues with Flash in IE, involving a SWF which is something like a gallery.
In Firefox its loads perfectly, but in IE it doesn't work properly sometimes. The first time it is loaded its works fine but when I refresh all the images are blank. The image data came from XML.
I wish to get some tips regarding the browsers and Flash / SWF behavior in each.
Thanks in advance.
I once faced a similar problem. IE first displays image properly. Upon refresh it didn't display the image. The problem was with the IE security settings on scripting languages. If the script fails to load properly on first time, IE blacklists the script and hence blocks it from running again. When u reset the security settings it will work. But you should still get into the bottomline of the issue and fix it.
Thanks,
Nirmal