Create an input (or button, or anchor) html element and call button() method of jQuery UI.
<script>
$(function() {
$( "#myButton" ).button();
});
</script>
HTML
<input type="button" value="A button" id="myButton">