2010-09-19 22:12:52 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>jQuery Mobile Framework - Search Example</title>
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/all" />
|
|
|
|
|
<script type="text/javascript" src="js/all"></script>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
2010-09-19 23:04:33 +00:00
|
|
|
<div data-role="page" class="ui-body-c">
|
2010-09-21 14:58:54 +00:00
|
|
|
<div data-role="header">
|
2010-09-19 22:12:52 +00:00
|
|
|
<h1>Search</h1>
|
|
|
|
|
<a href="index.html" class="ui-back" data-icon="arrow-l">Home</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
2010-09-20 14:47:49 +00:00
|
|
|
<form method="get" action="_search-results.html" data-role="ajaxform">
|
2010-09-19 23:04:33 +00:00
|
|
|
<label for="term" data-role="nojs">Search:</label>
|
|
|
|
|
<input type="text" name="term" id="term" placeholder="search..." data-role="search" />
|
|
|
|
|
<button type="submit" data-role="nojs">Search</button>
|
2010-09-19 22:12:52 +00:00
|
|
|
</form>
|
|
|
|
|
|
2010-09-21 14:58:54 +00:00
|
|
|
<div data-role="content" class=" ui-body">
|
2010-09-19 23:06:47 +00:00
|
|
|
<p class="ui-body">No search results yet...</p>
|
2010-09-19 23:04:33 +00:00
|
|
|
|
2010-09-19 22:12:52 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|