diy / jquery-emojiarea

A rich textarea control that supports emojis, WYSIWYG-style.
298 stars 87 forks source link

scrolling down when press space #22

Closed mostafa74 closed 6 years ago

mostafa74 commented 6 years ago

this script creates contenteditable div inside the page and when the user still editing this layer and press space key the page scrolling down! I use this $(document).on("keypress", function(e) { var $focusElem = $(":focus"); if(e.which == 32 && ($focusElem.is("input") || $focusElem.attr("contenteditable") == "true")){ e.preventDefault(); } });

but the page still scrolling down!