Deselect an ID that would otherwise be selected by class
- by justSteve
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