Open Link in Two Windows - Avoid Pop Up Blocker?

captainsmack

Junior Member
Joined
Mar 30, 2010
Messages
136
Reaction score
67
Hey everyone. I have a situation where I need to open two links with a single click. I'm currently using javascript to do this, but IE blocks the URL called in the code.

Code:
onclick="window.open('URL');"

Does anyone know of a better way to open two windows on click or a single link?
 
add an event listener, on mouse down, and one on mouse up, and open a window on both of the events
 
Back
Top