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 …
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;
-
Archives
- March 2008 (7)
- February 2008 (2)
-
Categories
-
RSS
Entries RSS
Comments RSS