Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When a user clicks on a link, I need to update a field in a database and then open the requested link in a new window. The update is no problem, but I don't know how to open a new window without requiring them to click on another hyperlink.

<body onLoad="document.getElementById('redirect').click">
<a href="http://www.mydomain.com?ReportID=1" id="redirect" target="_blank">Report</a>
</body>
share|improve this question
1  
Hm? target="_top" does not open in a new window - target="_blank" does. – Tomalak Oct 15 '09 at 17:53
Edited. Thanks! – Phillip Oct 15 '09 at 18:00
If the link is already opening in a new window (due to target="_blank") and the javascript click handler is already updating your database, why would you need to open the new window with Javascript at all? – Joel Mueller Oct 15 '09 at 21:05

3 Answers

up vote 35 down vote accepted
<script type='text/javascript'>
window.open('http://www.mydomain.com?ReportID=1');
</script>
share|improve this answer
Can I use target="_blank" with window.open? – Phillip Oct 15 '09 at 18:01
window.open does what target="_blank" does - it opens the URL in a new window. – ceejayoz Oct 15 '09 at 18:13
2  
yes. the second argument to window.open() is the "name" you want to give the window, similar to setting a target on a link. developer.mozilla.org/En/DOM:window.open – ob. Oct 15 '09 at 18:13
1  
Is there a JavaScript solution that does not get blocked by pop-up blockers like that of Firefox? – MattDiPasquale Dec 13 '10 at 1:28
1  
@MattDiPasquale blocking window.open is kinda the point of pop-up blockers! If you make the call in response to a click action it has a better chance of not being blocked. – William Denniss Aug 18 '11 at 15:16
show 1 more comment

I know this is a done and sorted out deal, but here's what I'm using to solve the problem in my app.

if (!e.target.hasAttribute("target")) {
    e.preventDefault();     
    e.target.setAttribute("target", "_blank");
    e.target.click();
    return;
}

Basically what is going on here is I run a check for if the link has target=_blank attribute. If it doesn't, it stops the link from triggering, sets it up to open in a new window then programmatically clicks on it.

You may need to rework it to fit your exact use-case, but here's how I scratched my own itch.

share|improve this answer
That is extremely useful for me. Thank you. – M Lamb Apr 9 at 2:28

You can extract the href from the a tag:

window.open(document.getElementById('redirect').href);
share|improve this answer
Does window.open work with target="_blank"? – Phillip Oct 15 '09 at 18:07
1  
ceejayoz answered your question, yes. – treznik Oct 15 '09 at 18:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.