Tag Archives: Firefox

Minor Annoyances with Firefox Development

When you’re developing web applications in Firefox, do you find yourself constantly clearing your cache? Cache is a useful facet of web browsing for everything but the continuous testing environment of web development. Here’s a nice alternative so that you don’t have to disable your cache entirely: Use the Firefox Plug-In called (humorously enough) JohnnyCache. [...]
Posted in Web Browsers | Also tagged | Leave a comment

Problems with Looping through window.setInterval

Look at this code. What do you expect to be the outcome?
Posted in JavaScript, Web Browsers | Also tagged | 3 Comments

Cross Domain XHR with Firefox 2

By now know you know that trying to do an XMLHttpRequest (XHR or AJAX) call to a domain that is different from the domain of the hosted JavaScript in Firefox will throw an exception. Error: uncaught exception: Permission denied to call method XMLHttpRequest.open If you don’t want a history of the past solutions, page down [...]
Posted in JavaScript, Web Browsers | Also tagged | 18 Comments

JavaScript Code Coverage Tool for Firebug

Download FirebugCodeCoverage-0.1.xpi Recently, I’ve become interested in client side automated testing tools. When I found the Selenium plug-in for Firefox, I was blown away. I can record actions in my browser and play them back! No more manual testing of JavaScript code! Researching a little bit more about automated testing tools led to the discovery [...]
Posted in JavaScript, Projects, Web Browsers | Also tagged , , | 22 Comments