How can I change this code so it detects whether a line inside contenteditable div is empty of has text?
$('#area').on("keyup change", function() {
if( this.value.substr(0,this.selectionStart).match(/(?:^|\s+)$/)
&& this.value.substr(this.selectionStart).match(/^(?:\s+|$)/)) {
console.log("empty");
} else {
console.log("has stuff");
}
});
works the way it should with textarea. I tried to replace VALUE with innerHTML - alas! with no luck.
UPDATE: what I am looking for is to find out if A SEPARATE LINE is empty. For example - try to add several lines and then delete any line using backspace. Deleting one symbol by one - when there are no more symbols on the line - script should return "empty". Example:
- line number one text // on "Del"/"Backspace" keyup returns "has stuff"
- // on "Del"/"Backspace" keyup returns "empty"
- line number three text // on "Del"/"Backspace" keyup returns "has stuff"
with your code(added
mouseover
to get div status on mouseover) using innerHTML:With
mouseover
and get the data using innerHTML.