SharePoint Progress Alert Code

  1. <script type="text/ecmascript" language="ecmascript">  
  2.   
  3. var statusId = '';  
  4. var notifyId = '';  
  5.   
  6. function AddNotification() 
  7. {  
  8.     notifyId = SP.UI.Notify.addNotification("Hello World!"true);  
  9. }  
  10.   
  11. function RemoveNotification()
  12. {  
  13.     SP.UI.Notify.removeNotification(notifyId);  
  14.     notifyId  = '';  
  15. }  
  16.   
  17. function AddStatus()
  18. {  
  19.     statusId = SP.UI.Status.addStatus("Status good!");  
  20.     SP.UI.Status.setStatusPriColor(statusId, 'Blue');  
  21. }  
  22.   
  23. function RemoveLastStatus()
  24. {  
  25.     SP.UI.Status.removeStatus(statusId);  
  26.     statusId = '';  
  27. }  
  28.   
  29. function RemoveAllStatus()
  30. {  
  31.     SP.UI.Status.removeAllStatus(true);  
  32. }  
  33.   
  34. </script>  

  1. <input id="Button1" type="button" value="Add Notification" onclick="AddNotification()" />  
  2.    <input id="Button2" type="button" value="Remove Notification" onclick="RemoveNotification()" />  
  3.    <p></p>  
  4.    <input id="Button3" type="button" value="Add Status" onclick="AddStatus()" />  
  5.    <input id="Button4" type="button" value="Remove Last Status" onclick="RemoveLastStatus()" />  
  6.    <input id="Button5" type="button" value="Remove All Status" onclick="RemoveAllStatus()" />