You can create any components with javascript. The code below shows how to create a linkbutton.
<a id="btn1" href="#"></a>
<script>
$(function(){
$('#btn1').linkbutton({
text: 'Button',
iconCls: 'icon-help',
onClick: function(){
//...
}
})
})
</script>