I\'m having a strange issue...
This works in chrome as expected but in safari it only gets .. glowing but doesn\'t react on key input..
this is the method that f
Safari has the user-select CSS setting as none by default. You can use:
user-select
none
[contenteditable] { -webkit-user-select: text; user-select: text; }
To make it work.