on() "mousedown" isn't working anymore. What am I doing wrong?

on() "mousedown" isn't working anymore. What am I doing wrong?


Hi

On my site I want to change the href on all itunes links into a shorturl. I use this code. I think it worked before, but now it seems it has stopped working. Not sure why. No errors in log. Maby there's a more elegant solution (that's working)?

  1. jQuery(document).ready(function() {
  2.   jQuery("body").on('mousedown', 'a[href*="itunes.apple.com"]', function() {
  3.     var l = jQuery(this).attr('href');
  4.     if (l.match(/id(d{3,25})/g)) {
  5.       jQuery(this).attr('href','http://tinyituneslink.co.uk/'+RegExp.$1);
  6.     }
  7.   });
  8. });