When you want animated maps or zippier feedback than Google’s JavaScript mapping API can provide, you can use the Flash Maps API. Yes, even Google acknowledges that its popular, full-featured platform can’t do everything. Using the Flash API used to mean you needed to know Flash. Now, you can get the benefit, but still program in JavaScript.
If you’re using FF 3.5 to view any website and have firebug enabled,
you may encounter an annoying javascript error:
“onreadystatechange FAILS Error: Permission denied for XXXX to create
wrapper for object of class UnnamedClass Error”
This is a FF3.5/Firebug issue and is not a bug of the website
Unfortunately, there is no real good workaround if you need to have
firebug on except that disabling the Net tab may help reduce the
chances of getting the error. But if you don’t have to use firebug,
simply turn it off.
Web page load time is an important factor in we design and development, not only web developes but bloggers and site owners need to optimize their web pages so they load faster or else retaining users will be difficult. There are many tools which analyze web pages and show you ways to improve load times. Firebug for Firefox is a useful addon for analyzing web page css, js and other stuff.
Google has released a Firefox addon called Page Speed today that is integrated with Firebug, that means you need Firebug for Firefox and of course Firefox before you can install this addon. The Page speed addon when installed adds tabs to Firebug console.
You can analyze web page performance using this addon, click on “Analyze Performance” button in the page speed tab in firebug. It gives optimization tips upon examining the web pages. The tips ranges from highly recommended, moderate to least. These tips will provide short description and clicking on the link will take you to page speed documentation where you can read more on how to optimize your site.
The Show Resources link will show you the objects loaded in the web page with the type of the object, file size and transfer size. You might find some scripts and images that are too heavy here, better to get rid of them or minimize them.
Yahoo long has a similar addon called YSlow for Firebug that analyzes web pages and suggests improvements for performance of web pages.