Click to add Dynamic buttons
Description
The following code shows how to click to add Dynamic buttons.
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'>//<![CDATA[
$(window).load(function(){<!--from ww w. j a v a2 s .c om-->
// Append new button
var i = 1;
$('#static').on('click', function () {
$('#test').append('<a href="#" data-role="button">Dynamic Button ' + i + '</a>').trigger('create');
i++;
});
});//]]>
</script>
</head>
<body>
<div id="test">
<a href="#" data-role="button" id="static" data-theme="b">Click to
create button</a>
</div>
</body>
</html>