Add background image to input box
Description
The following code shows how to add background image to input box.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.css">
<style type='text/css'>
.ui-input-text, .ui-input-search {<!-- www . j a va 2 s .c om-->
background:
url("http://placehold.it/30x30")
1% no-repeat !important;
background-color: #EEE !important;
outline: 0
}
</style>
</head>
<body>
<div id="search_controls">
<input type="number" class="search-box" placeholder="Number" />
<input type="search" class="search-box" placeholder="Search" />
<input type="text" class="search-box" placeholder="Text" />
<input type="email" class="search-box" placeholder="email" />
</div>
</body>
</html>