Create text input
Description
The following code shows how to create text input.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.4.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script>
</head><!-- w w w.j a v a 2 s. co m-->
<body>
<div data-role="page" class="type-home">
<div data-role="content">
<input type="text" placeholder="Search Applications" />
</div>
</div>
</body>
</html>