JS and style with MozillaHi all. There is an JS code for MSIE: function GetElement( id ) { return (isNN4) ? document.layers[id] : (isIE) ? document.all[id].style : (isNN6) ? document[id] : (isDOM) ? document.getElementById(id).style : 0; } ... styleOBJ = GetElement( 'IdOfElement' ); styleOBJ.background = '#FFDDDD'; It works fine... But it doesn't work with Mozilla 1.3. Any ideas? |