Skip to content

Instantly share code, notes, and snippets.

@luizfonseca
Created April 26, 2011 05:54
Show Gist options
  • Save luizfonseca/941848 to your computer and use it in GitHub Desktop.
Save luizfonseca/941848 to your computer and use it in GitHub Desktop.
Sample code
$('form.simple_form').submit(function(e){
var textarea = $('textarea.text_required').val();
if (textarea == '')
{
e.preventDefault();
var msg = 'The comment field is a required field';
$('div.scroll > p').append(msg);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment