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

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -