This is a trick to get multi pop-ups. Nice method if used right. You can also use clickjack to get the click.
<script> function makePopups(){ for (i=1;i<6;i++) { window.open('popup.html','spam'+i,'width=50,height =50'); } } </script>
<body>
<a href="#" onclick="makePopups()">Spam</a>
Demo: http://jsfiddle.net/ZpRYm/2/
This works on all browsers.
<script> function makePopups(){ for (i=1;i<6;i++) { window.open('popup.html','spam'+i,'width=50,height =50'); } } </script>
<body>
<a href="#" onclick="makePopups()">Spam</a>
Demo: http://jsfiddle.net/ZpRYm/2/
This works on all browsers.