How to change and use this function:
$(function() {
$("a#toggle").click(function() {
$("#yellow_div").slideToggle();
return false;
});
});
to run when input text get focus?
<input id="toggle" type="text" />
<div id="yellow_div" style="display:none;">
<p>Hello</p>
</div>