What does ecma stand for?
No Answer is Posted For this Question
Be the First to Post Answer
Is dart better than javascript?
What is the real name of JavaScript?
What are escape characters in javascript?
Which built-in method removes the last element from an array and returns that element?
Name some of the built-in methods and the values returned by them.
Are you concerned that older browsers don't support javascript and thus exclude a set of web users? Individual users?
How to determine the state of a checkbox using javascript?
What is the difference between textContent and innerText?
what is event bubbling and event capturing in javascript?
what is the difference between wrappers and primitives es: diff between int i=200 in primitives and integeri = new integer(54)
What is encodeuri() 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