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
Post a Comment