How to not load wordpress embeds until click ?

Gipsy Kings

Junior Member
Joined
Jun 15, 2011
Messages
177
Reaction score
38
Hi all,

I've a movies streaming wordpress site using psytheme embedding videos from external source but it's loading very slow due external embeds, How can make the video load only upon clicking the video ?

You can find an example here
Code:
https://bit.ly/2MxgHBS

It uses a function named "onclick=getlink "

Thanks in advance.
 
Last edited:
You can use JQuery.
Code:
$( "#myelement" ).click(function() {     
    if($('#another-element:visible').length)
        $('#another-element').hide("slide", { direction: "right" }, 1000);
    else
        $('#another-element').show("slide", { direction: "right" }, 1000);       
});
Here a live demo:
http://jsfiddle.net/rajaadil/j999y/2/
 
Back
Top