How to set value in inputs of iframe using javascript -


i want data other websites title, images etc. , write input tags within iframe. how can this? below js script.

var ifrm = null; ifrm = document.createelement('iframe'); ifrm.id = 'listyy-bkmk-iframe'; ifrm.name = 'myframe'; ifrm.style.width = '100%'; ifrm.style.height = '100%'; ifrm.style.zindex = 2000000000; ifrm.style.position = 'fixed'; ifrm.style.left = '20%'; ifrm.style.top = '20%'; ifrm.style.display = 'block'; ifrm.style.clip = 'inherit'; ifrm.style.backgroundcolor = 'white'; ifrm.style.opacity = '100'; ifrm.src = 'http://localhost/listyycodebase/wordpress/bookmarklet-popup/'; if ('allowtransparency' in ifrm) {   ifrm.allowtransparency = true; } document.body.appendchild(ifrm); 


Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -