The script-click on an interaction click-trigger is the approach I always use.
I use vanilla JS. It seems unlikely that jquery would click any differently, but try a standard JS click just in case.
jQuery’s .click() does not trigger native click events like JavaScript’s .click() method. It only triggers jQuery’s own event handling mechanisms. If the click event is expected to interact with native browser behaviors (e.g., form submission), jQuery .click() might not trigger those.