Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <img class="ui-icon ui-icon-info" onclick="dynamicModal()"/> Click image
  2.  
  3. dynamicModal = function() {
  4. $("<div>Dinamically created</div>").dialog({
  5. modal: true,
  6. draggable: false,
  7. resizable: false,
  8. position: ['center', 'top'],
  9. show: 'blind',
  10. hide: 'blind',
  11. width: 400,
  12. dialogClass: 'ui-dialog-osx',
  13. buttons: {
  14. "Destroy": function() {
  15. $(this).dialog("destroy");
  16. }
  17. }
  18. });
  19. return false;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement