Hi,
I have a problem with jquery mobile overwriting items like a, span etc. For example how can i make something like this:
<div data-role="page">
<div id="footer" data-role="footer" data-position="fixed">
<a href="somelink.html>some link</a>
</div>
</div>
I want the a tag to stay as is and not be transfered into this:
<a href="somelink.html" data-theme="a" class="ui-btn ui-btn-corner-all ui-shadow ui-btn-up-a">
<span class="ui-btn-inner ui-btn-corner-all">
<span class="ui-btn-text">some link</span>
</span>
</a>
Couldn't find it in the doc.