• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

Frontend Jquery - Load Javascript on scroll down (Disqus Comment)

Status
Not open for further replies.

0x1

LeVeL23 HacKerS TeaM
User
Joined
Nov 15, 2013
Messages
880
Reputation
0
Reaction score
6,315
Points
243
Credits
78
‎11 Years of Service‎
18%
     
uVF9mdE_d.webp

Can help to improve performance to your website .                              

For exemple : Load disqus comment on scrool down

                                       Here Load  Diqus function on scroll  , Replace Name_Disqus to you name diqus:

Code:
<script charset="UTF-8">
    $(window).one('scroll',function() {
            load_disqus('Name_Disqus');
    });
</script>
            Exemple Load Disqus Javascript

Code:
var clicked = false;
function load_disqus( disqus_shortname ) {
var disqus_trigger = jQuery('#disqus_trigger'),  disqus_target = jQuery('#disqus_thread');
if(clicked === false){
  if(disqus_target && disqus_trigger) {
    jQuery.ajaxSetup({ cache:true });
    jQuery.getScript('//' + disqus_shortname + '.disqus.com/embed.js');
    jQuery.ajaxSetup({ cache:false });
    disqus_trigger.remove();
    console.log('Disqus loaded.');
                                      }

                     }
      clicked = true;

                                   }

 
Last edited by a moderator:
Status
Not open for further replies.
Back
Top