Change theme
Description
The following code shows how to change theme.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.css">
<script type='text/javascript'>
$(window).load(function(){<!--from w ww.j a v a 2 s.co m-->
$('a').on('click', function () {
$('input').closest('div').removeClass('ui-body-c ui-body-d')
$('input').closest('div').addClass('ui-body-e');
});
});
</script>
</head>
<body>
<a data-role=button href=#>change theme</a>
<label for="text-1">Text input:</label>
<input type="text" name="text-1" id="text-1" value="">
</body>
</html>