Guest User

Untitled

a guest
Aug 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. var $dialog_remove = $("#dialog-remove").dialog({
  2. autoOpen: false,
  3. modal: true,
  4. resizable: false,
  5. buttons: {
  6. "Yes": function(){
  7. //var index = $("li", $navigation).index($(this).parent());
  8. console.log($navigation);
  9. console.log(index);
  10. //$navigation.tabs("remove", index);
  11. //$(this).dialog("close");
  12. },
  13. "No": function() {
  14. $(this).dialog("close");
  15. }
  16. }
  17. });
  18.  
  19. $("#navigation span.ui-icon-close").live("click", function(){
  20. var index = $("li", $navigation).index($(this).parent());
  21. //console.log(index);
  22. $dialog_remove.dialog("open");
  23. });
Add Comment
Please, Sign In to add comment