up vote 3 down vote favorite
3
share [g+] share [fb]

When using contentEditable in Mozilla, is there a way to prevent the user from inserting paragraph or line breaks by pressing enter or shift+enter?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

You can attach an event handler to the keydown or keypress event for the contentEditable field and cancel the event if the keycode identifies itself as enter (or shift+enter).

This will disable enter/shift+enter completely when focus is in the contentEditable field.

If using jQuery, something like:

$("#idContentEditable").keypress(function(e){ return e.which != 13; });

...which will return false and cancel the keypress event on enter.

link|improve this answer
Hurrah! Thanks! :) – Daniel Cassidy Jan 9 '09 at 17:52
1  
Note that this won’t work when copy-pasting text with line breaks into the contentEditable area. – Mathias Bynens Jun 29 '11 at 18:57
feedback
$("#idContentEditable").keypress(function(e){ return e.which != 13; });

Solution proposed by Kamens doesn't work in Opera, you should attach event to document instead.

/**
 * Pass false to enable
 */
var disableEnterKey = function(){
	var disabled = false;

	// Keypress event doesn't get fired when assigned to element in Opera
	$(document).keypress(function(e){
		if (disabled) return e.which != 13;
	});					

	return function(flag){
		disabled = (flag !== undefined) ? flag : true;
	}
}();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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