Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kkrico/cd62f2129b9a14bc9348b08b755a5853 to your computer and use it in GitHub Desktop.
Save kkrico/cd62f2129b9a14bc9348b08b755a5853 to your computer and use it in GitHub Desktop.
jQuery(function(){
var ds_loaded = false, top = jQuery("h1:contains(Comments)").offset().top;
function check(){
if ( !ds_loaded && jQuery(window).scrollTop() + jQuery(window).height() > top ) {
jQuery.getScript("http://jquery.disqus.com/disqus.js?v=2.0&slug=add&pname=wordpress&pver=2.12");
ds_loaded = true;
}
}
jQuery(window).scroll(check);
check();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment