| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 
 | <!DOCTYPE html>
<html>
<head>
    <title>Test PHP</title>
    <link rel="stylesheet" href="css/my_custom_theme.min.css" />
    <link rel="stylesheet" href="css/jquery.mobile.structure-1.3.2.min.css" />
    <script src="js/jquery-2.0.3.min.js"></script>
    <script src="js/jquery.mobile-1.3.2.min.js"></script>
    <script type="text/javascript" charset="utf-8">         
        $(document).ready(function(){
           $.getJSON("ajax.php", function(data) {
                  alert(data[0]);
                });
        });
     </script>
</head>
 
<body>
    <div id="page1" data-role="page" data-theme="a" >
		<div data-role="header" data-position="fixed" data-tap-toggle="false">
			<a href="" data-transition="slide" data-direction="reverse" data-role="button" data-icon="back" data-iconpos="notext"></a>
			<h1>Header</h1>
			<a href="index.html" data-role="button" data-icon="delete" data-iconpos="notext"></a>	
		</div>
 
	        <div data-role="content">							
		</div>
 
		<div data-role="footer" data-position="fixed" data-tap-toggle="false">
			<h1>Footer</h1>
		</div>
    </div>
</body>
</html> |