- Issue created by @Ahmad Khader
Using window.location.href = link.href results in an immediate hard navigation away from the page. This interrupts Drupal's JavaScript execution, including Drupal.once, preventing Drupal behaviors from completing fully.
Change window.location.href = link.href;
to link.click();
to prevent any hard navigation.
Needs review
2.0
Code