Skip to main content
formattin
Source Link
Raptor
  • 54.4k
  • 47
  • 254
  • 405

Use the setTimeout luke!

Use the setTimeout luke! setTimeout( function () { (function(d,s,id){ // load js ... } (document, "script", "facebook-jssdk") ); }, 3000); 

You can throw the load in another 'thread' to async or Defer it

Use the setTimeout luke! setTimeout( function () { (function(d,s,id){ // load js ... } (document, "script", "facebook-jssdk") ); }, 3000); 

You can throw the load in another 'thread' to async or Defer it

Use the setTimeout luke!

setTimeout( function () { (function(d,s,id){ // load js ... } (document, "script", "facebook-jssdk") ); }, 3000); 

You can throw the load in another 'thread' to async or Defer it

Source Link
ghost
  • 458
  • 6
  • 11

Use the setTimeout luke! setTimeout( function () { (function(d,s,id){ // load js ... } (document, "script", "facebook-jssdk") ); }, 3000); 

You can throw the load in another 'thread' to async or Defer it