Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. function W01()
  2. {
  3. if (/another 25 seconds before attempting to search again/i.test (document.body.innerHTML) )
  4. {
  5. document.body.innerHTML() = document.body.innerHTML.replace('Sorry, but you can only perform one search every 25 seconds. Please wait another 25 seconds before attempting to search again.', 'Press F5 or Reload the page now');
  6. }
  7. else if (/another 24 seconds before attempting to search again/i.test (document.body.innerHTML) )
  8. {
  9. document.body.innerHTML() = document.body.innerHTML.replace('Sorry, but you can only perform one search every 25 seconds. Please wait another 24 seconds before attempting to search again.', 'Press F5 or Reload the page now');
  10. }
  11. else if (/another 23 seconds before attempting to search again/i.test (document.body.innerHTML) )
  12. {
  13. document.body.innerHTML() = document.body.innerHTML.replace('Sorry, but you can only perform one search every 25 seconds. Please wait another 23 seconds before attempting to search again.', 'Press F5 or Reload the page now');
  14. }
  15. }
  16.  
  17. document.body.innerHTML = "some HTML";
  18.  
  19. document.body.innerHTML = document.body.innerHTML.replace('Sorry, but you can only perform one search every 25 seconds. Please wait another 23 seconds before attempting to search again.', 'Press F5 or Reload the page now');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement