I need to open multiple urls on click of a button. Am testing on Chrome PS: I am doing this for myself. I am just trying to open all urls which i want to read daily in the morning. I don't want to waste time clicking on each url for example. Not sure if javascript is the right tool to build such functionality or not Wrote the following code and it's not opening, just opening the first and the last url
<html>
<head>
<title>Shopping</title>
<script>
function Software()
{
window.open("http://forums.asp.net/", "status=1,toolbar=1,menubar=1");
window.open("http://www.joelonsoftware.com/", "status=1,toolbar=1,menubar=1");
window.open("http://blog.cwa.me.uk/", "status=1,toolbar=1,menubar=1");
window.open("http://www.lifehacker.com/", "status=1,toolbar=1,menubar=1");
window.open("http://www.Theverge.com", "status=1,toolbar=1,menubar=1");
window.open("http://www.hanselman.com/", "status=1,toolbar=1,menubar=1");
window.open("http://www.goodreads.com", "status=1,toolbar=1,menubar=1");
window.open("http://www.stackoverflow.com", "status=1,toolbar=1,menubar=1");
}
</script>
</head>
<body>
<a href="http://www.channel9.msdn.com/" onclick="Software()">
Software / Programming
</a>
</body>
</html>