Slide left panel in
Description
The following code shows how to slide left panel in.
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">
<style type='text/css'>
#msg {<!-- w w w .j a va 2 s .c om-->
width: 200px;
height: 100px;
box-shadow: 0 0 8px #444 inset;
border: 1px solid #666;
}
</style>
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){
$(function(){
$('input[type="submit"]').on('click', function(e){
$('#msg').append('<div>Clicked</div>');
$('#panel').html('<input type="submit" value="New Button">').trigger('create');
});
});
});//]]>
</script>
</head>
<body>
<div data-role="page">
<div data-role="panel" id="panel">
<input type="submit" value="Initial Button">
</div>
<!-- /panel -->
<div data-role="content">
<a href="#panel">Open panel</a>
<div id="msg"></div>
</div>
</div>
<!-- page -->
</body>
</html>