Forum Moderators: open
var el = $('myTextArea');
var sb = $('mySubmitButton');
// have the behaviour trigger on keyup for best user responsiveness
// the length condition returns true or false.
// assign that to the "disabled" property of your submit button
el.onkeyup = function(){
sb.disabled = (this.value.length < 75);
}
tada!