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

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

How to get multiresult with multicondition in Sql Server -