/(function($) { /** * Initialization */ Drupal.behaviors.prevent_js_alerts = { /** * Run Drupal module JS initialization. * * @param context * @param settings */ attach: function(context, settings) { // Override the alert() function. window.alert = function(text) { // Check if the console exists (required e.g. for older IE versions). if (typeof console != "undefined") { // Log error to console instead. console.error("Module 'prevent_js_alerts' prevented the following alert: " + text); } return true; }; } }; })(jQuery);