How to loop through array in javascript?
How to determine the state of a checkbox using javascript?
What exactly does javascript do?
What is event in web programming?
What is the use of isNaN function?
What is the difference between JavaScript and jscript?
What looping structures are there in JavaScript?
What is javascript ‘strict mode’?
What is the best ide for javascript development?
How can I learn javascript fast?
Write JavaScript code to use file system in binary format?
How do I activate javascript on my phone?
The below script is working Internet browser but not working in mozilla plz find that good way... function doSubmit(op){ var rowcount=document.getElementsByName ("parameterTypeId").length; var parameterGrade; var performance; var goal; if(op == "save"){ for (var i=0; i < rowcount; i++) { var param=eval("document.forms [0].parameterGrade"+i); if(param.value != "select"){ return true; } } alert("Please rate atleast one attribute"); return false; }//if ends here