I have a bunch of div tabs that are named. In internet explorer, I can view their names with alert(el.name); In netscape, however, the names is always undefined. Anyway have any ideas?
<div id="id412" menu="This is div 'id412'"></div>
To alert the "menu" value in IE, do this:
alert(id412.menu);
in NN and IE abovew version 4.0:
alert(getElementById('id412').menu);
Rick if(($question=="has been bugging me"
AND $answer=="fixed the problem" OR $answer=="really good post"{
print("Star"
}else{
print("Thanks."
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.