Guest User

Untitled

a guest
Apr 11th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. /* Enter your own Javascript code here... */
  2. /* You can include JS files from remote servers, for example: */
  3. /* load_js("http://example.com/script.js"); */
  4. var origAlert = window.alert;
  5. window.alert = function(m) {
  6. if (!/The server took too long to submit your post/.test(m)) {
  7. origAlert(m);
  8. } else {
  9. setTimeout(function() {
  10. $('.submit > input').click();
  11. }, 1000)
  12. }
  13. }
Add Comment
Please, Sign In to add comment