Guest User

Untitled

a guest
Apr 26th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $('div.no-post').dialog({
  2. buttons: {
  3. "Ok": function() {
  4. $(this).dialog("close");
  5. }
  6. },
  7. title: "Post Not Found",
  8. modal: true,
  9. draggable: false,
  10. resizable: false
  11. });
  12.  
  13. <div class="no-post">
  14. Sorry, that blog post could not be found.
  15. </div>
Add Comment
Please, Sign In to add comment