How to prevent jquery mobile adding it's classes to html elements?

jquery, jquery-mobile

Solution

Perhaps adding data-role="none" as attribute will help?

http://jquerymobile.com/demos/1.0rc2/docs/forms/forms-all-native.html

Problem

I develop drag'n'drop jquery mobile constructor. When jmobile core loaded it's override my css rules by adding some classes to different elements. How prevent this? I want apply transform after element dropped on my "canvas". How can I do this?

Original source

Related problems