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.

how to close a window using jquery for all browser compatibility?

<input type="button" name="backButton" value="Close" 
       style="background-color:#245f91; color:#fff;font-weight:bold;" 
       onclick="window.close();">

This onclick event is working in IE. Could u please anyone help me to write code in jquery.

share|improve this question
2  
window.close is plain javascript. Nothing in jQuery will make it more cross browser. It is the browser itself that decides if it allows your script to close the window. – mplungjan Jan 17 '12 at 6:15

3 Answers

$(element).click(function(){
    window.close();
});

Note: you can not close any window that you didn't opened with window.open. Directly invoking window.close() will ask user with a dialogue box.

share|improve this answer

just window.close() is OK, why should write in jQuery?

share|improve this answer

This will only work for windows which are opened by using window.open(); method. Try this

var tmp=window.open(params);
tmp.close();
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.