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

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -