On click load iframe [closed]

Did you inspect your code for any errors?

If the error is “Uncaught TypeError: $ is not a function”, then maybe you can add the code as below.

<script>
jQuery(document).ready(function($) {
    //your code starts here
    <iframe id="myiFrame" class="stop-lazy" data-src="https://some.iframe" frameborder="0" allowtransparency="true" style="width: 100%;min-height: 150px;"></iframe>
});
</script>