Change theme via Javascript in button click
Description
The following code shows how to change theme via Javascript in button click.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.4.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){<!--from w w w .j a v a2 s. c om-->
$('#myTop').click(function() {
$(this).attr('data-theme', 'b').trigger('create');
});
});//]]>
</script>
</head>
<body>
<a href="#" data-role="button" data-theme="a" id="myTop">Theme a</a>
</body>
</html>