Hi,
I’ve a form, where I want to call one function whenever a textbox or dropdown gets focus. Here I’m getting a call when focus comes to jqxinput but for jqxdropdown the focus event is not even getting binded. Provided below is the code for your reference,
<div id="testform">
<input type="text" id="fname" name="fname" value="" class="inputText" />
<div id="countryname" name="country" class="jqxSelect"></div>
</div>
$(document).ready(function (){
$('#testform input').focus(function()
{
alert('input box focus');
});
$('#testform .jqxSelect').focus(function()
{
alert('select box focus');
}
});
Can anyone suggest me a solution of how to trigger a call when a jqxdropdown gets focus?
Looking for a prompt response.
Thanks,
Senthil