Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. var testgod=function (){
  2. var replyButton=$('.ms-comm-postReplyButton')[0];
  3. if(replyButton!=null)
  4. {
  5. if(replyButton.title=="Reply")
  6. $(replyButton).on("click",function(e)
  7. {
  8. e.preventDefault();
  9. console.log("mi custom submit");
  10. setTimeout(function(){
  11. getUserLoginNameSync();
  12. }, 4000);
  13.  
  14. });
  15. replyButton.title="Reply ";
  16.  
  17. }
  18.  
  19. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement