Can you assign an anonymous function to a variable and pass it as an argument to another function?
872What is argument objects in javascript & how to get the type of arguments passed to a function?
1084How to have the status line update when the mouse goes over a link (the support of the status line is sporadic)?
983
Can you pass a anonymous function as an argument to another function?
What does double mean in javascript?
Who created npm?
Explain the role of deferred scripts in javascript?
Is it possible make a call to server side event of any button using javascript?
What is an onclick?
Is everything in javascript asynchronous?
Can I declare a variable as CONSTANT in JavaScript?
What is viewstate in javascript?
Why javascript is called lightweight language?
Can you access Cookie using javascript?
What is the difference between undefined and not defined in JavaScript?
What is enum data type?
How to detect browser name using 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