Showing posts with label open multiple url. Show all posts
Showing posts with label open multiple url. Show all posts

Friday, 19 April 2013

Multiple URL Opener

Multiple URL Opener: Use this type of opener and enjoy to open multiple tabs at one time. Tested only for Internet Explore & Firefox!!! function openall() { } function open_all(){ var urls = document.getElementById("list_urls").value; var urls = urls.split('\n'); var totalno = urls.length; var s; for(var i=0;itotalno;i++){ s = urls[i]; if(s){ if(s.substr(0,7)!='http://') s = 'http://'+s; window.open(s); } } return false; }...

Comments