princesust
princesust

Reputation: 148

I want some html element in my form that uniform.js has no effect

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

Answers (2)

Christopher Lawes
Christopher Lawes

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

lifeofbenschi
lifeofbenschi

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

Related Questions