Say you want to use a selector to select all controls with a certain class, apart from a particular one. Use the not selector:
$('.selectedClass:not(#exceptionId)').functions();
Sweet.
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
Say you want to use a selector to select all controls with a certain class, apart from a particular one. Use the not selector:
$('.selectedClass:not(#exceptionId)').functions();
Sweet.