Deselect an ID that would otherwise be selected by class
Posted
by justSteve
on Stack Overflow
See other posts from Stack Overflow
or by justSteve
Published on 2010-04-25T23:39:21Z
Indexed on
2010/04/25
23:43 UTC
Read the original article
Hit count: 174
jquery-selectors
I have a page where all inputs are assigned a behavior: $("input").blur(function () {
and I need to exclude a checkbox that has a specific id:
<input type="checkbox" id="allButMe" onchange="billingSameChanged();" value="true"/>
thx
© Stack Overflow or respective owner