I have a text area which I've used ckeditor on:
<form name="product_edit" action="products.php" method="post" id="edit_form" enctype="multipart/form-data">
<textarea name="products_description" wrap="soft" cols="75%" rows="20" id="products_description"></textarea>
Also after including jQuery I have the following to validate the form:
$(document).ready(function() {
$('#edit_form').submit(function() {
if ($('#products_description').val() == '') {
alert('Please include a product description.');
return false;
}
}); // end submit()
}); // end ready()
I also have a couple of other fields I validate which aren't included for brevity.
My problem is that while all the other fields work fine with that, the text area sometimes doesn't. If I type stuff in it sometimes doesn't recognize it and still pops up the alert. Then if I go back and click (I don't even have to type anything more) and try to submit it works.
Any guesses as to why?