Search code examples
jqueryjqtransform

JQTransform - Exclude an element from styling?


I'm using JQTransform to style all form elements. Is it possible to disable the styling on a specific element, leaving all the others styled by JQTransform?


Solution

  • I've added if( $input.hasClass('ignore') == true ) { return; } to line 99 of the plugin to ignore any text fields with class=ignore. Maybe this will help you.