Jquery: How to Check If a Checkbox is Checked

Thursday, October 27th, 2011

If you want to validate if a checkbox is checked using jquery (javascript framework), here is the code snippet for the purpose. We'll use :checked selector for the purpose.

Javascript/Jquery: Email Address Validation Using Regexp

Saturday, October 22nd, 2011

Email address is mostly the essential form field and to make sure that user entered a valid email address you may need to validate user input before processing. To validate an email address using javascript/Jquery you may use the following code snippet, that validate in email address using regex.