I am trying to determine if a textarea is empty if a user deletes what is already pre-populated in the textarea using jQuery.
Anyway to do this?
This is what
You just need to get the value of the texbox and see if it has anything in it:
if (!$(`#textareaid`).val().length) { //do stuff }