[Question] Opening multi pages

Custom Title Activated
Loyal Member
Joined
Mar 28, 2006
Messages
2,383
Reaction score
0
Location
x Infinity +1
Basically, I want to open this page in like 100 tabs or browser windows. Don't ask why, I just need to. Is there a code or something to do this? I just need to enter the URL and it like opens..100 tabs with the link.

;p
 
Needs something that opens multiple tabs at once, seems like that didn't work.
 
I feel another lame script coming up with opening 100 windows in your browser. Nevertheless here is some code to work with.

Code:
<html>
	<head>
		<script>
		var iNumberOfPages = 3 // Number of Pages to Open
		var sPageLocation = "mypage.html"  // Specify which page needs to be opened
	
		// DO NOT EDIT BELOW //
		var i=0
		for (i=1;i<=iNumberOfPages;i++){
		window.open(sPageLocation,"_new")
		}
		// END OF SCRIPT //
	
		</script>
	</head>
	<body>
		This is just one of those lame pages, spamming your browser.
	</body>
</html>
 
Back