Button Design - JQUERY UI - With Custom Image No Text GREAT ICON BUTTON EXAMPLE For Bizamajig
by bizamajig
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/sunny/jquery-ui.css">
<button id="btnClose"> </button>
CSS
body
{
padding: 20px;
}
JavaScript
$(document).ready(function() {
$("#btnClose")
.text("")
.append("<img src=https://lh5.googleusercontent.com/-YJMBqVobtwY/TWjA7XLPXDI/AAAAAAAABbs/vKQNd4U1C74/s1600/1298656123_blackboard+copy3.png width=100 height=100 />")
.button();
});