HI guys this is going to seem like the most stupid question ever possible but the site that was helping me go through this is undergoing maintanence. I am in the early stages of learning jquery mobile and need some help.
I have an ordered listview non-dynamic in a html5 page. I want to show an alert on the phone (like a pop up alert on ios) that says text to the user and they can then click ok to close it to go back to the ordered list view. My html is this. I would like it when i click on Montview from this list as an example a alert pops up on the iphone with some text for the user and they then click ok to close it.
Can someone help me with the jquery mobile javascript required, like i said i was learning but then the site went down.
Thanks
<head>
<title>title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="lib/jquery-1.6.4.js"></script>
<script src="lib/jquery.mobile-1.1.0.js"></script>
<script type="text/javascript" src="https://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.min.js"></script>
<link href="src/css/jquery.mobile.structure-1.1.0.css" rel="stylesheet">
<link href="src/css/jquery.mobile.theme-1.1.0.css" rel="stylesheet">
</head>
<body>
<div data-role="page" id="page1">
<div data-role="header">
<h1>Grounds</h1>
</div>
<div data-role="content">
<ol data-role="listview" data-theme="c" data-inset="true">
<li>
<a>Montview</a>
</li>
<li data-theme="b">
<a>Asquith</a>
</li>
<li>
<a>Button</a>
</li>
<li>
<a>Button</a>
</li>
</ol>
</div>
</div>
<div data-role="page" id="page2">
<div data-role="header">
<h1>Header</h1>
</div>
<div data-role="content"></div>
<div data-role="footer">
<h1>Footer</h1>
</div>
</div>
</body>
