How can I fire the ShareThis popup window using jQuery?

1.6k Views Asked by At

The ShareThis code we are using activates the popup window based on hovering over the email button (.st_email), but I can't seem to get the popup to activate automatically using jQuery.

I've tried..

$(".st_email").mouseover();
$(".st_email").click();

Any ideas?

Here is the embedded ShareThis code:

<!-- ShareThis Code -->
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "########"}); </script>
3

There are 3 best solutions below

1
On

Your example assumes that you have an element with the class st_email (that's what the . in front of st_email means).

That selector will select that element, but you have to do something in the event handler:

$(".st_email").mouseover(function(e) { /* Write code to show your popup */ });

I can't fill in the commented piece without knowing more about your popup.

If you do this with mouseover, you need to correctly handle the possibility of receiving multiple mouseover events.

Handling with click is easier in that regard, if that is acceptable in your case. Here's code that shows how do react to the click event:

$(".st_email").click(function(e) { alert('put code here to open popup'); });
0
On

Try like this

<script type="text/javascript">stLight.options({publisher: "########",onhover: false}); </script>
0
On

You may try to click the div inside shareThis button container:

  • $(".st_email > div").mouseover();
  • $(".st_email > div").click();