I want to set focus to the textbox when i click the text box. I tried the below code but am not getting as expected .
$('#txtDate').focus();
Thanks in advance.
I want to set focus to the textbox when i click the text box. I tried the below code but am not getting as expected .
$('#txtDate').focus();
Thanks in advance.
This will work
$('input').click(function() {
$(this).focus();
})
Your question is not completely clear. But the following answer might make sense to you. And write a CSS as below.
JS------
$('input').focus(function()
$(this).addClass("focus");
});
CSS----
.focus {
border: 2px solid #AA88FF;//This you can set any color you want
background-color: #FFEEAA;//This you can set any color you want
}