Skip to main content

Posts

Showing posts from 2010

How to Validate Radio Button using Java Script

Use Following code to Validate radio button on your form: function checkRadio (frmName, rbGroupName) { var radios = document[frmName].elements[rbGroupName]; for (var i=0; i if (radios[i].checked) { return true; } } return false; } To call this function for validation use the following code:- ------------------ if (!checkRadio("frm1","rdbgender")) alert("You didnt select any fruits"); else alert("You selected a fruit");  Say Namasthey to Javascript!!!. Post your comments..

How To Create A Wiki

A wiki is an open platform for sharing..It is not only just a website but also a collection of web pages that can be edited and reviewed by others..Check out this Presentation to know how to create a wiki using pbwiki: How To Create A Wiki View more presentations from Susan Bentley .