Clone
Module: Create Invisible Iframe
Haoxi Tan edited this page 2020-01-09 10:57:59 +10:00

Summary

  • Objective: Create an invisible iframe on the page

  • Authors: passbe

  • Browsers: All

  • Parameters:

    • URL: the URL to load in the invisible iframe.
  • Code

Internal Working

        createInvisibleIframe: function() {
                var iframe = this.createElement('iframe', {
                                width: '1px',
                                height: '1px',
                                style: 'visibility:hidden;'
                        });

                document.body.appendChild(iframe);

                return iframe;
        },

Feedback