Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
don't press the shift key?? – kalpaitch Sep 29 '12 at 18:05
Don't submit it but script it into the iframe or a div with ajax – mplungjan Sep 29 '12 at 18:11
@kalpaitch: I'm glad to, but users don't =) – E L Sep 29 '12 at 18:31
maybe check it for a pressed SHIFT key and don't submit if pressed? – E L Sep 29 '12 at 18:32
Why do you mind? Pressing SHIFT on submission will cause the form to submit to a new window. That's expected behaviour, and the user who did it is expecting for that to happen. Why hinder his user experience? – Madara Uchiha Sep 29 '12 at 18:42
show 1 more comment

1 Answer

Ok, answering to myself =)

if(!event.shiftKey){
//then do submit()
}else{
//do smth else (warn about new window, for example)
}

(of course if there'snt a way to switch shiftKey event to "false" state for browser)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.