Archive for January, 2010

Back to my world after long

Childhood, originally uploaded by Lazy Fellow.

Have been too busy with family activities and completion of my MBA. At last the marathon family programs have been ended and the MBA(YAHOO!!!!) as well.

No Comments

Simple Javascript Validation for Checkbox

There are times when we need to add javascript validation to check if at least one of a group of checkbox options has been checked. Here is a simple function that’ll solve the problem and works in most of the browsers.

<html>
<head>
<title>Imran’s checkbox validation</title>
<script language=”javascript”>
//frm is the form element
function checkForm(frm){
var destCount = frm.elements['dest[]‘].length;
var destSel [...]

No Comments