Skip to content

Instantly share code, notes, and snippets.

@danbruegge
Created August 15, 2012 13:48
Show Gist options
  • Save danbruegge/3360301 to your computer and use it in GitHub Desktop.
Save danbruegge/3360301 to your computer and use it in GitHub Desktop.
SocialSharePrivacy load only once
jQuery( document ).ready( function( $ ) {
var loadSsp = function() {
if( $( '.socialshareprivacy' ).length > 0 ){
$( '.socialshareprivacy' ).socialSharePrivacy();
}
}
if( !$.socialSharePrivacy ) {
$.getScript( 'http://www.totaltankstelle.de/static/socialshareprivacy/socialshareprivacy.js', function() {
loadSsp();
} );
} else {
loadSsp();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment