I have an iframe without ID (generated by a third party). The IFrame is embedded on the landing page. When the submit button on the iframe is pressed, I would like to close the window or the landing page, because when the submit button is pressed, it will open a new tab.
function() {
var iframe = document.getElementByTagName('iframe');
var sbutton = document.getElementById("form_002b_ao_submit_href");
iframe.sbutton.onclick = function() {
window.unload();
}
};
but it does not start.
Jevic source
share