How to put an icon next to text fileld in jquery mobile? -
i need put icon next text field in jquery mobile.
<div data-role="fieldcontain"> <label for="card">verification number</label> <input data-mini="true" type="text" name="card" id="card"> <a href="card.png"> <img src="questionicon.jpg"> </a> </div>
first of have unclosed tags in html code.
you have close tags code working without errors.
the img , input tag not close.
here working fiddle demo needs
have change little bit html code:
<div data-role="fieldcontain" id="myfield"> <label for="card">verification number</label> <ul> <li> <input type="text" name="card" id="card"/> </li> <li> <a href="#"> <img src="image.jpg" width="20px" height="20px" id="myimage"/> </a> </li> </ul> </div>
Comments
Post a Comment