javascript - Using jqtransform plugin on all but one form -


we're using jquery jqtransform plugin style our site's forms. there's 1 form though don't want change. modified script runs jqtransform on forms following:

 $('form:not(.classofformwedon'twanttochange)').jqtransform(); 

it still has same effect running on forms though. wrong way :not selector being used? thanks

this should work.

$('form').not('.classofformwedontwanttochange').jqtransform(); 

fiddle illustration of type of syntax.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -