drdelta

dr delta

Jan 26th, 2010
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name           HKU Server
  3. // @namespace      Armada
  4. // @description    Select the server
  5. // @include        http://webmail.hku.nl/
  6. // ==/UserScript==
  7.  
  8. //Change this to the option index
  9. var index = 4;
  10.  
  11. function input() {
  12.     //Get the right document
  13.     var content = document.getElementsByName("horde_main")[0].contentDocument;
  14.     //Input the server
  15.     content.getElementsByName("server")[0].selectedIndex = index;
  16. }
  17. content.getElementsByName("loginButton")[0].click();
  18.  
  19. setTimeout(input,350);
Advertisement
Add Comment
Please, Sign In to add comment