mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-18 15:00:23 +00:00
30 lines
No EOL
801 B
HTML
30 lines
No EOL
801 B
HTML
<!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>
|
|
|
|
<div data-role="page" class="ui-body-c">
|
|
<div data-role="header">
|
|
<h1>Search</h1>
|
|
<a href="index.html" class="ui-back" data-icon="arrow-l">Home</a>
|
|
</div>
|
|
|
|
<form method="get" action="_search-results.html" data-role="ajaxform">
|
|
<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>
|
|
</form>
|
|
|
|
<div data-role="content" class=" ui-body">
|
|
<p class="ui-body">No search results yet...</p>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html> |