What is noscript tag?
No Answer is Posted For this Question
Be the First to Post Answer
How do I add a javascript event handler to an html page element?
Why extending array is bad idea?
List some unit testing frameworks javascript
How to access the value of a textbox using javascript?
What is argument objects in javascript & how to get the type of arguments passed to a function?
How can you create an Array in JavaScript?
What is javascript namespacing?
What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }
What is the difference between .call() and .apply()?
What is the use of a map object in javascript?
List different ways of empty an array in javascript?
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