$(document).ready(function(){
$('#targets').submit(function() {
var error = 0;
var comment = $('#comment').val();
if (comment == '') {
error = 1;
alert('Comment cannot be empty.');
}
if (error) {
return false;
} else {
return true;
}
});
});
Follow Us On Facebook