Why don't HTML / CSS Dropdown links click on 1st click, only 2nd click works?

Strange, all the links in the HTML / CSS / JS drop-down menu (top right with the parent menu items "Home" "Store" "Create", as shown in the example image), do not click on their href = recipients on the 1st click. Clicking 1 time does nothing. Wait a few seconds to make sure that nothing is happening, then click again - the browser is working, following the link to the destination on the 2nd click.

I am testing on Google Chrome.

This is the only menu or set of links that have this problem throughout the site ...

I already right-clicked them to check an element with a developer panel in Chrome, expecting to find some other element blocking it or something, but it’s not, the target seems to be available, and the freezing states work fine and that’s all.

See an example here: http://www.PuckStyle.com

Thanks!

Update:

Here is a screenshot on request -

screenshot-dropdown-link-not-working-on-first-click-in-google-chrome.png

+8
html css drop-down-menu click
source share
1 answer

I managed to find something using Chrome dev tools for checking events.

If I remove this click (1) event, then I can click the link in the menu.

enter image description here

When I click on the link to the script (2), a block of code (3) is highlighted.

enter image description here

Looks like a script to double-tap. You can remove it from your site. You may not need double entry on your website.

+10
source share

All Articles