javascript - jQuery onfocusin/out and targetting input boxes, textarea and select elements -
i need help,
i can't seem below code function target onfocusin input boxes, textareas , select elements, however, not want target input type='button'
$('#content select, input[type='text'], #content textarea').focusin(function(e) { this.style.backgroundcolor = '#colorcode' });
try following:
$('#content select, input[type="text"], #content textarea').focusin(function(e) { this.style.backgroundcolor = '#colorcode' });
Comments
Post a Comment