Advertisement
Guest User

Untitled

a guest
Dec 27th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name     SelectorPrivado
  3. // @version  1
  4. // @include http://190.116.50.7/virtualclass/
  5. // @grant    none
  6. // ==/UserScript==
  7.  
  8. var url = new URL(document.location);
  9. var ID = url.searchParams.get("ID");
  10. function selectOption(index){
  11.   document.getElementById("cbo_sede").options.selectedIndex = index;
  12. }
  13. if(ID!="") selectOption(ID);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement