Reputation: 148
I am using uniform.js to beautify my html forms. But I want some of the HTML elements to not be modified by uniform.js.
Upvotes: 2
Views: 1054
Reputation: 106
add a class to the objects you don't want to be attached to the uniform plugin, and use the jquery .not() selector.
like this: How to remove uniform function on a specific select?
Upvotes: 1
Reputation: 777
Search trough your files and delete the transformations you don't need.
Example (search for this):
$(function(){ $("YOURELEMENT").uniform(); });
And comment/delete it.
Upvotes: 0