Explain the working of timers in javascript?
No Answer is Posted For this Question
Be the First to Post Answer
What is event in web programming?
How do you target a specific frame from a hyperlink?
What is primitive data types in javascript?
What is javascript hoisting?
Which built-in method combines the text of two strings and returns a new string?
What is the use of let & const in javascript?
What is a hash javascript?
What is a way to append a value to an array?
What causes memory leaks?
what is syntax of wapper class
What are all the looping structures 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