And probably even with:
Related:
x. Display Disqus On Click Event (also check out how the site does it from the source)
$j=jQuery.noConflict();
$j(document).ready(function() {
$j('.showComments').on('click', function(){
$j('#displayComments').fadeIn();
var disqus_shortname = 'paulund';
$j.ajax({
type: "GET",
url: "http://" + disqus_shortname + ".disqus.com/embed.js",
dataType: "script",
cache: true
});
$j.ajax({
type: "GET",
url: "https://apis.google.com/js/plusone.js",
dataType: "script",
cache: true
});
$j.ajax({
type: "GET",
url: "http://platform.twitter.com/widgets.js",
dataType: "script",
cache: true
});
$j(this).fadeOut();
});
});