Change icon background
Description
The following code shows how to change icon background.
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.1/jquery.mobile-1.3.1.min.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css">
<script type='text/javascript'>
$(window).load(function(){<!--from w ww. ja v a2 s . c o m-->
$('.ui-icon-info').css("background-color", "red");
});
</script>
</head>
<body>
<body>
<div data-role="page">
<div data-role="content">
<a href="#" data-role="button" data-icon="info" data-inline="true"
data-iconpos="notext"></a>
</div>
</div>
</body>
</body>
</html>