View Single Post
  #4 (permalink)  
Old 06-01-2008, 08:14 AM
CygnetGames's Avatar   
CygnetGames CygnetGames is offline
Programmer
 
Join Date: May 2007
Location: York, England
Posts: 113
Rep Power: 6
CygnetGames is on a distinguished road
Default Re: JavaScript working in IE but not in Firefox

One way to get around some of the incompatibilities between browsers (and make writing code easier) is to use a library like iQuery. While you might want to use document.all in IE, but document.getElementById() in FireFox, jQuery will work out for you which to use - you just use a single jquery function and your code works on different browsers.
Reply With Quote