I want to cut the price off to all input value in all divs, except only one div sale_wrap. how do I make an exception with jquery?
div sale_wrap
Just to add little more information. One can use multiple not selector like this:
$("div:not(#sale_wrap):not(.sale_class)");
or
$("div:not(#sale_wrap, .sale_class)");
$("div").not('#sale_wrap, .sale_class');