Turn off button data theme
Description
The following code shows how to turn off button data theme.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.4.js'></script>
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css">
</head><!--from w w w.java2s . c o m-->
<body>
<div data-role="page" id="first">
<div data-role="header">
<h1>Header</h1>
</div>
<!-- /header -->
<div data-role="content">
<h3>Title</h3>
<a data-role="button" data-theme="none" data-corners="false"
data-shadow="false" data-inline="true" href="">
<img src="http://placehold.it/30x30" alt="Picture" /></a>
</div>
<!-- /content -->
</div>
<!-- /page -->
</body>
</html>