Set focus on iframe in Chrome
问题 I have an iframe ( id: 'chat' ) with designMode='on' in Chrome. On Enter keypress event I call the function send() , which takes the iframe contents and writes it to a socket. My problem is that when clearing the iframe, I lose focus. How to do I set the focus so I can continue to type text in the iframe? function send(){ var $iframe = $('#chat'); var text = $iframe.contents().text() + "\n"; socket.send(text); // When this is done, the focus is lost // If commented, the focus will not be lost