jquery dialogs

Solutions on MaxInterview for jquery dialogs by the best coders in the world

showing results for - "jquery dialogs"
Julieta
26 Feb 2018
1$( "#dialog" ).dialog({
2  dialogClass: "no-close",
3  buttons: [
4    {
5      text: "OK",
6      click: function() {
7        $( this ).dialog( "close" );
8      }
9    }
10  ]
11});
12