Handle page show event
Description
The following code shows how to handle page show event.
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>
</head><!--from ww w . j ava 2s .c o m-->
<body>
<div data-role="page" id="reportProduction">
<div data-role="content">
<a data-role="button" href="#page_2">Navigate Away</a>
</div>
</div>
<div data-role="page" id="page_2">
<div data-role="content">
<a data-role="button" href="#reportProduction">Report Production</a>
</div>
</div>
<script type='text/javascript'>//<![CDATA[
var focusOnQuantity = function () {
var now = new Date().getTime();
$('#reportProduction').children('[data-role="content"]').append('<div>pageshow fired:' + now + '</div>');
};
$(document).delegate('#reportProduction', 'pageshow', focusOnQuantity);
//]]>
</script>
</body>
</html>