I\'ve got a form that I clear on focus. I\'ve selected the whole form and it works great except that the submit button goes blank when I click it.
how can I exclude my i
Use .not() to exclude your input button (or buttons) from the set of inputs you already have.
$('input.are.blong.to.us') // give me a bunch of inputs .not('#submit') // exclude input#submit .focus( ... ) .blur( ... );