(function ($) { Drupal.behaviors.muamba = { attach: function (context, settings) { // Ajax colorbox support // See https://drupal.org/node/836160#comment-4870846 $('.colorbox-ajax', context).each( function() { // get the current URL var oldUrl = $(this).attr('href'); // append the required parameters // TODO: there might be already a ? at the url, // in that case use & instead var newUrl = oldUrl + '&template=colorbox'; // update the links href $(this).attr('href', newUrl); }); } }; }(jQuery));