Search code examples
htmlhyperlinkhref

<a href=""></a> 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:

  1. visit http://afmrock.com/ ,
  2. click upper right corner "Tune In" link
  3. click/see link SHOUTcast Radio within the popup window, or other links within the window.

Solution

  • Edit this file: /script/system.js

    Remove the following:

    $('.popup .inner').click(function () {
        return false;
    });
    

    This is disabling all click events inside that popup.