All,
Here’s the solution I implemented on Lean Domain Search:
Wrap the link in a div like so:
In your CSS, add:
div#twitter_follow.hidden {
position: absolute;
left: -10000px;
}
When you’re ready to show it, simply remove the “hidden” class:
$("div#twitter_follow").removeClass("hidden");
Basically you’re making the widget visible in the DOM, but positioning it so far offscreen that the user can’t see it. When you’re ready to display it, you remove the class that forces it offscreen so that it now appears to the user.