quote:
Originally posted by Ezra
opening windows not triggered by clicks will be blocked by most pop-up blockers
Yep.
quote:
Originally posted by Ezra
using javascripts window.open function and html's own href function.
href isn't a function, but anyway, using an onclick event together with a normal link will usually mean that the onclick event works and the normal link doesn't.
The way I'd approach the problem is by having the link to the page that you want to show, then have a redirecting meta tag to the mp3.
Link to user (same as you posted):
code:
<a href="http://www.mcinferno.co.uk/"><img src="http://img103.imageshack.us/img103/9824/mcinfernocoukkb9.jpg" border="0" alt="www.mcinferno.co.uk"></a>
... in second page:
code:
<head>
<meta http-equiv="Refresh" content="0;url=http://www.mcinferno.co.uk/force-download.php?file=Has%20Got%20Me.mp3">
</head>