Put javascript inside page scope
Description
The following code shows how to put javascript inside page scope.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.4.js'></script>
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css">
</head><!-- w ww .j a va 2 s .c om-->
<body>
<div data-role="page" id="page">
<div data-role="content">
<script type="text/javascript">
$('#page').live('pageinit', function (event) {
$("#btnonce").click(function() {
alert("Handler for .click() called.");
});
$("#btntwice").click(function() {
alert("Handler for .click() called.");
});
})
</script>
<div data-role="collapsible" data-collapsed="false" id="one">
<h3>Test</h3>
<input type="button" id="btntwice" data-icon="check"
value="fire twice"></input>
<input type="button" id="btnonce"
data-icon="check" value="fire once"></input>
</div>
</div>
</div>
</body>
</html>