I've followed the jquery ui demos and checked previous question on SO, but cant see why my code isnt working. Im trying to use the jquery ui button to layout button. In this simple example I just want to erase the button label:
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript" src="jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="jquery-ui.js"></script>
</head>
<body>
<button type="button" id="b111">a</button>
<script type="text/javascript">
$(document).ready(function(){
$("#b111").button( {
text: false
} );
});
</script>
</body>
</html>