Sharing Customization

Display Mini Menu on Hover Delay

When the mini menu is set to display on hover, it appears immediately on mouseover by default. Instead of appearing immediately on hover, you can delay the appearance of the mini menu by a specified number of milliseconds.

We suggest using a value between 50 and 500.

var a2a_config = a2a_config || {};
a2a_config.onclick = false;
a2a_config.delay = 300;

In WordPress, add the following JavaScript code to your "Additional JavaScript" box in Settings > AddToAny.

In Drupal, add the following JavaScript code to your "Additional JavaScript" box in Configuration > Web services > AddToAny > Additional Options.

a2a_config.onclick = false;
a2a_config.delay = 300;

Tip: To disable the hover behavior completely, you can set the menu to appear on click only.