not working">
Code is W3C valid, and everything should be fine. But when user clicks the link nothing happens!
This link source is:
<a target="_blank" title="Download" href="http://itunes.apple.com/us/app/shoutcast-radio/id299647180?mt=8">SHOUTcast Radio</a>
And you can see it in action:
SHOUTcast Radio
within the popup window, or other links within the window.<a onclick="javascript: navigation.set('tunein'); return false;" href="tune-in/">Tune in</a>
that's something totally different - binarious 2012-04-04 18:51
Refused to set unsafe header "Connection"
Kirk Woll 2012-04-04 18:54
Edit this file: /script/system.js
Remove the following:
$('.popup .inner').click(function () {
return false;
});
This is disabling all click events inside that popup.
Search your script files for something like ".preventDefault()"
It's gotta be something like that, because that syntax is absolutely correct.
@inkedmn's comment is the same idea.
When I go to the links on the webpage it is downloading a pls file. It is not the link you have posted. The link you have posted works fine. Right click on the link and inspect the element. You will see
<a target="_blank" href="http://stream.afmrock.com/listen.pls" title="Download listen.pls">http://stream.afmrock.com/</a>
The this will attempt to download the pls file.
If this is what was intended, then I am confused where you have the specified link at in your site.
click
event - inkedmn 2012-04-04 18:50