tags:

views:

29

answers:

3

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: 

You can use the jEditable plugin for jQuery to accomplish this.

Mike Trpcic
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
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