I'm using the Following DD Scripts
Dropdown HTML control
Dropdown HTML control
How can I get the Dropdown HTML Control menu to always be on top.
For some reason the marquee is on top and...
Type: Posts; User: no1uknow; Keyword(s):
I'm using the Following DD Scripts
Dropdown HTML control
Dropdown HTML control
How can I get the Dropdown HTML Control menu to always be on top.
For some reason the marquee is on top and...
I have a feeling I know this answer to this, but thought I'd ask....
I have an html list/menu (option, drop down menu)
In there I have:
first name last name, address city
Is there anyway to...
I finally figured this out, here's what I did....
Move the id and class up to the <tr> instead of the <td>
example:
<tr id="sc3" class="switchcontent">
<td class="whatever_class">bla bla</td>...
OK I figured this out....
you have to createTextNode and do some appending...
Interesting...
myEle=document.createElement("option");
theText=document.createTextNode("[------- SELECT ITEM...
I'm having an issue with IE and Firefox being compatible...
myEle.text is not being passed to IE but is to Firefox
myEle = document.createElement("select") ;
myEle =...
figured it out
style.right
How can I make this script float right instead of left?
Floating Menu Script
http://www.dynamicdrive.com/dynamicindex1/staticmenu.htm
thanks...