Linking to tabs to open it is not working anymore on Webflow

Hi, I am using this script to link to a tab and open it

<script>
var Webflow = Webflow || [];
Webflow.push(function () {
  var tabName = getParam('tab');
  if (!tabName) return;

  $('.' + tabName).triggerHandler('click');

  function getParam(name) {
    name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
    var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
      results = regex.exec(location.search);
    return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
  }
});
</script>

It worked fine before but now it’s not working at all

I have my URL linking correctly and the script is placed there too

Yet, it just goes to the tab section but doesn’t initiate a mouse click on the tab

I guess others are also having a similar issue on this forum,

It would be so good if you could see the governance page below and give your input. Cuz I’m tired of banging my head on the wall trying to make this work


Here is my site Read-Only: [LINK][1]