This is my code :
HTML
<a href="#" id="showTwitter">Twitter</a>
<div><a href="http://twitter.com/share" class="twitter-share-button" data-url="www.google.it" data-count="vertical" data-lang="it"><!-- --></a></div>
jQuery
$("#showTwitter").click(function() {
$.getScript("http://widgets.twimg.com/j/2/widget.js");
});
I'd like to load the twitter plugin clicking on the link, but it will not rendered. Why? And how can I fix this?