Hey, I'm working on implementing a button on my webpage and here's the code:
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script>
$( "#insert-image-button" )
.button()
.click(function() {
$( "#AttachImage" ).dialog( "open" );
});
</script>
<button id="insert-image-button">Create new user</button>
The button is currently styled using standard JQuery style. I want to customize its appearance to suit my design. Any suggestions on how I can do this effectively?
When inspecting with firebug, it shows the following class:
class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only"