Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable share this hover effect?

I need to disable the mouseover popup ShareThis uses. According to the documentation I just need to add "onhover: false” to the options. However this does not work. This does not even work in their documentation on how to disable the hover effect.

How can I stop this hover event from executing?

Thanks in advance for any help!

like image 812
woot586 Avatar asked Feb 24 '23 09:02

woot586


1 Answers

<script type="text/javascript">
   stLight.options({
      publisher:'b8a24e9b-84db-4fe8-8950-ea6f0e28e2fa',
      onhover: false
   });
</script>
like image 80
Ahmed Mustafa Avatar answered Feb 27 '23 14:02

Ahmed Mustafa