kromm77

Hide Notify programmatically

Apr 17th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  function removeElements(circuitid) {
  2.             $.notify('Libero porta e cpe di ' + circuitid,
  3.                 {
  4.                     className: "success",
  5.                     globalPosition: "top center",
  6.                     autoHide: false
  7.                 }
  8.             );
  9.             setTimeout(
  10.                 function () {
  11.                     $('.notifyjs-wrapper').trigger('notify-hide');
  12.                     $.notify('Circuito ' + circuitid + ' liberato',
  13.                         {
  14.                             className: "success",
  15.                             globalPosition: "top center",
  16.                             autoHideDelay: 100
  17.                         }
  18.                     );
  19.                 }
  20.                 , 2000);
  21.            
  22.             location.reload(true); return false;
  23.         }
Add Comment
Please, Sign In to add comment