2010-09-19 22:12:52 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>jQuery Mobile Framework - Search Example</title>
|
2010-10-07 19:15:59 +00:00
|
|
|
<link rel="stylesheet" media="only all" href="css/all" />
|
2010-09-19 22:12:52 +00:00
|
|
|
<script type="text/javascript" src="js/all"></script>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
2010-10-09 03:10:56 +00:00
|
|
|
<div data-role="page" >
|
2010-09-21 14:58:54 +00:00
|
|
|
<div data-role="header">
|
2010-09-19 22:12:52 +00:00
|
|
|
<h1>Search</h1>
|
2010-10-09 03:10:56 +00:00
|
|
|
|
2010-09-19 22:12:52 +00:00
|
|
|
</div>
|
|
|
|
|
|
2010-10-09 03:10:56 +00:00
|
|
|
<form method="get" action="_search-results.html" data-role="ajaxform" d>
|
2010-09-19 23:04:33 +00:00
|
|
|
<label for="term" data-role="nojs">Search:</label>
|
2010-10-06 04:44:03 +00:00
|
|
|
<input type="search" name="term" id="term" placeholder="search..." />
|
2010-09-19 23:04:33 +00:00
|
|
|
<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>
|