I have the following code for a submit button my page:
The html markup is:
<td align="Right"><input type="submit" value="Add Driver" ></td>
and the jquery is:
$( "input[type=submit]" ).button().click(function( event ) {
event.preventDefault();
});
How would I add a ui icon to the above, specifically the ui-icon-circle-plus
You can change your HTML like this:
And then update your script like this:
Demo: http://jsfiddle.net/mh5Pu/