On click an label an combo box should appear... please check http://guruji.com/en/local.html on clicking near mycity the label changes into combobox (dropdown list)..how to do it.
A:
simple. you need to have two span element and play with js, css
<span style='display:block' id="click me">
<a href="#" onclick="javascript:document.getElementbyId('dropdownspan').style.display=hidden" select me</span><span style='display:hidden' id="dropdownspan">
<select name="test"><option value="1">one</option></select>
</span>
coder
2010-03-02 17:36:30
A:
Clicking that link simply hides the original link and makes the "cities" dropdown visible. The dropdown is already on the page, you just can't see it.
Robusto
2010-03-02 17:37:19