Archive for January, 2010
Back to my world after long
Posted by Imran in Miscellaneous on January 24th, 2010
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.
Simple Javascript Validation for Checkbox
Posted by Imran in Javascript on January 22nd, 2010
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 [...]