Let's say you have a script.
for example
Where clixdo is javascript for window.open( url + x + y )Code:// ==/UserScript== clix(); function clix() { //generate random number x = getRandomInt(1, 20) y = getRandomInt(1, 28); clixdo(x, y); } function getRandomInt(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; }
How would you go about managing the windows, and properly closing them?
What about with a given time interval. (page needs to load another page and wait x time)
Given the code could be changed to new_window = window.open( some url ) and could be added to an array.
Results 1 to 6 of 6
Threaded View
- 20 Oct. 2014 10:29pm #1
- Join Date
- Apr. 2013
- Location
- Minnesota
- Posts
- 1,325
- Reputation
- 114
- LCash
- 0.00
Proper JavaScript Window Management?
https://discord.gg/TvN6xUb ~ chat on discord pls.