(function ($) { Drupal.behaviors.test = { attach: function (context, settings) { $('.clickable-row .views-row').each( function() { if ($(this).find('a').length) { $(this).click(function() { window.location=$(this).find('a').attr('href'); return false; }); } }); } }; })(jQuery);