I have a drop down say
<select id="countries">
<option value="1">Country</option>
</select>
and a check box,
<input type="checkbox" name="search_engine" id="search_engine" class="hear" value="search_engine" />
<input type="checkbox" name="search_engine1" id="search_engine1" class="hear" value="search_engine1" />
<input type="checkbox" name="search_engine2" id="search_engine2" class="hear" value="search_engine2" />
On the click of the checkbox I want to open the drop down, how can I do that using jquery.
Tried the below code but its not working, I am using jquery 1.10.3
function open_drop_down()
{
$('#countries').show().focus().click();
}