Guest User

Untitled

a guest
Jan 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. win2 = window.open("popup_choose_template.html", "Window2", "width=310,height=600,scrollbars=yes");
  2.  
  3. $( "#dialog-confirm" ).dialog({
  4. height:140,
  5. modal: true,
  6. buttons: {
  7. "Ok": function() {
  8. $( this ).dialog( "close" );
  9. },
  10. Cancel: function() {
  11. $( this ).dialog( "close" );
  12. }
  13. }
  14. });
  15.  
  16. <div id="blackout" style="position:fixed; width:100%; height:100%; z-index:100; background-color:black; opacity:0.5;"></div>
Add Comment
Please, Sign In to add comment