i need to remove the css class of my textbox on focus event:
jquery:
function searchBoxfocus () {
document.getElementById('<%= txtusername.ClientID%>').value = "";
$('#txtusername').removeClass('text-label');
$('#txtusername').addClass('glow');
}
pls help me out the class "text-label " is not removing.
Ravi ShekharPosted Jul 18, 2013, 5:02 AM
look your control id in browser viewsource then put this id in
I think your code is right.
TRY.
Iftikar HussainPosted Jul 18, 2013, 5:22 AM
Try like this without onblur and onfocus
in css
Regards,
Iftikar
Ravi ShekharPosted Jul 18, 2013, 5:17 AM
replace your class name text-label' as textlabel and try...
ashok kumarPosted Jul 18, 2013, 5:15 AM
Riyaz AkhtarPosted Jul 18, 2013, 5:08 AM
ashok kumarPosted Jul 18, 2013, 4:58 AM
Ravi ShekharPosted Jul 18, 2013, 4:53 AM