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
$.each(["input[type=text][value=]", "textarea[value=]"], function (index, element) { //only empty input and textarea will come here });