Hi All
I am trying to access the style-object for firefox, this is an attempt to create dynamic web pages that would be specific to browser type.
My HTML tag is:
HTML Code:
<DIV id=darrow style="XX">image tag here</DIV>
Place object then in Jscript variable for IE4:
Code:
var newobj = eval("document.all.darrow.style") and for Navigator is:
Code:
var newobj = document.darrow
Ok, so how would I get the object in
FireFox?
Thanks for the help