Advertisement
ramenn

Untitled

Mar 28th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var origAlert = window.alert;
  2. window.alert = function(m) {
  3. if (!/The server took too long to submit your post/.test(m)) {
  4. origAlert(m);
  5. } else {
  6. setTimeout(function() {
  7. $('.submit > input').click();
  8. }, 1000)
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement