(function ($, Drupal) {
Drupal.behaviors.myWebFormTracker = {
  attach: function(context) {
    var obj = jQuery(context).find('.webform-confirmation');
    if (obj.length > 0) {
      console.log('Batch Form submitted.');
     $('.nescafe-overlay').addClass('openOverlay');
      $('body').addClass('lock-scroll-y');
      let redirectUrl = $('a.redirect-url').attr('href');
        setTimeout(() => {
        window.location.href = redirectUrl;
         }, 2000);
    }
  }
};
})(jQuery, Drupal);
