Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function() {
  2.     function jakas_funkcja_1() {
  3.         // jakis kod
  4.     }
  5.  
  6.     function jakas_funkcja_2() {
  7.         // jakis kod
  8.     }
  9.  
  10.     function load_URL(URL) {
  11.         window.location = URL;
  12.     }
  13.  
  14.     jakas_funkcja_1();
  15.     load_URL("http://jakis_url.com/");
  16.     jakas_funkcja_2();
  17. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement