Okay, Thank you
.ui-dialog-titlebar-close {
visibility: hidden;
}
<script>
$(function() {
$( "#dialog" ).dialog({
width: 800,
height: "auto",
autoOpen: false,
modal: true,
buttons: {
Ok: function() {
$( this ).dialog( "close" );
}
}
});
$( "#opener" ).click(function() {
$( "#dialog" ).dialog( "open" );
});
});
</script>
OK button, hide link url
This gives an error. Where should I add?
show: {
effect: "blind",
duration: 1000
},
hide: {
effect: "explode",
duration: 1000
}