Replace label with span
Description
The following code shows how to replace label with span.
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.0rc1/jquery.mobile-1.0rc1.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0rc1/jquery.mobile-1.0rc1.min.js"></script>
<script type='text/javascript'>
$(window).load(function(){<!-- w w w. j a v a2 s .c om-->
$('#textinput2').css('width','60%').css('display','inline');
});
</script>
</head>
<body>
<!-- Standard jQM -->
<div>
<label for="textinput">Text:</label>
<input type="text" id="textinput" />
<br />
<input type="button" id="searchbutton" data-icon="search"
data-iconpos="notext" onclick="function()" />
</div>
<br />
<br />
<!-- Override -->
<div>
<!-- use span instead of label -->
<span>Text:</span>
<input type="text" id="textinput2" /> <br />
<input type="button" id="searchbutton2" data-icon="search"
data-iconpos="notext" onclick="function()" />
</div>
</body>
</html>