Browser-Phone
Browser-Phone copied to clipboard
focus on search input field
Hi,
Setting focus on the input field when the search button is clicked allows for quicker search operations. Something like this:
$("#BtnFindBuddy").on('click', function(event){
$("#divFindBuddy").toggle();
if ($("#txtFindBuddy").is(':visible')) $("#txtFindBuddy").focus();
});
Thanks,
Vieri
True