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>
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:
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: