Guest User

Untitled

a guest
Nov 18th, 2012
2,015
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. // ==UserScript==
  2. // @name View all cams on reallifecam.com
  3. // @namespace None
  4. // @version 1
  5. // @description View all cams without paying
  6. // @match http://reallifecam.com/
  7. // @copyright 2012+, None
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
  9. // ==/UserScript==
  10.  
  11. var clipsDiv = $(".clips.low");
  12. var i = 1;
  13. var newHTML = '';
  14. while(i <= 30)
  15. {
  16. newHTML = newHTML + '<div class="galki-vpravo menu1" onclick="changeclass(\'01_'+i+'\');return false;"><a href="cam'+i+'.stream" id="01_'+i+'" class=""> Cam '+i+'</a></div>';
  17. i++;
  18. }
  19. clipsDiv.html(newHTML);
Advertisement
Add Comment
Please, Sign In to add comment