I am trying to set the style for my dialog button in my JSP. The code I'm using is affecting both buttons, but I want to apply individual styles to each one.
Currently, I am using jQuery version UI 1.9
jQuery code:
$('#success').dialog({
autoOpen: true,
height: 180,
width: 350,
modal: true,
resizable: false,
dialogClass: 'no-close',
buttons: {
"Add": function() {
$(this).dialog("close");
$( this ).dialog( "close" );
},
Cancel: function() {
$( this ).dialog( "close" );
}
}
});