Javascript variable namingNo matter what sort of naming convention you use for your javascript variables, there is one rule you must always follow when naming variables in javascript: never give javascript variables the same name as an ID value of an element on the page. If you do, it'll work fine in Firefox (which offers good javascript debugging), but it will break in Internet Explorer (which offers absolutely horrible javascript debugging).
|

