Sanjeev’s Weblog

Mostly my techie notes, which could help any Java guy

10,000 BC – Review Coming Soon

I am enthralled with the promos of this movie. Big lions with terrible teeths, elephants wit hair like bear .. and a lot of action scenes ..

i will give 4.5 rating to promos .. lets hope movi will also be like that …
Going to watch this movi this weekend ..
For reviews …

March 5, 2008 Posted by urssanj00 | Movies | | No Comments Yet

Some Common Javascript

Iterating Form elements – checkboxes
for(i=0;i<document.myform.elements.length;i++)
{
if(document.myform.elements[i].type == “checkbox”)
{
if(document.myform.elements[i].checked)
{
alert(document.myform.elements[i].name);
}
}
}//end of for loop

Selecting 3rd option in a dropdown
document.myform.mycomb0.selectedIndex = 2;

March 5, 2008 Posted by urssanj00 | Javascript | | No Comments Yet