I/m trying to submit form in iframe "frameTarget" I have a form like this
<Form name="FEdit" method="post" target="frameTarget">
<input type="hidden" name="edit" value="">
</Form>
somewhere on page is a button
<button onclick="DoSmth()">edit</button>
and I have a js code, that submits this form
function DoSmth(){
document.FEdit.submit();
//setTimeout("document.FEditStarter.submit()",1000); //same result =(
}
The problem is, when I click this button with SHIFT key pressed, this form opens in a new window, not in iframe with name "frameTarget".
What to do to not open it in a new window?
