Append text to page content
Description
The following code shows how to append text to page content.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-git2.js'></script>
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){<!--from w ww .j a va 2s . com-->
$('button').click(
function() {
$('.ui-content').append('click ');
}
);
});//]]>
</script>
</head>
<body>
<div data-role="page" id="page1">
<div data-role="header">
<h3>Page 1</h3>
</div>
<div data-role="content">
<button data-icon="check">Click me at my border</button>
</div>
</div>
</body>
</html>