I am trying to load an animation within an iframe that I did on Google web Designer.
I haven't been able to make it work. I downloaded Jquery.js, and Jquery.lazy.min.js from here: http://jquery.eisbehr.de/lazy/
This is my attempt:
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.lazy.min.js"></script>
<script>
$(function() {
$('.lazy').Lazy();
});
</script>
<iframe class="lazy" data-src="slider1/slider1.html" allowTransparency="true" scrolling="no" frameborder="0" height="300px"></iframe>
It doesn't work at all, the animation is not loaded whatsoever!
What am I doing wrong? Any suggestions?