Tag: web technology
Questions Related to web technology
-
window.onunload=function() { alert('closing'); }
-
window.onunload+=onClose; function onClose() { alert('closing'); }
-
window.onunload=onClose; function onClose() { alert('closing'); }
-
All the above
-
setTimeout('functionname()',4)
-
setTimeout('functionname()',4000)
-
setTimeout('functionname()',400)
-
None
-
var obj=document.findControl('controlId');
-
var obj=document.getObjectById('controlId');
-
var obj=document.getElementById('controlId');
-
var obj=document.getObject('controlId');
-
window.parent.location='newpage.html'
-
window.top.location='newpage.html'
-
window.opener.location='newpage.html'
-
Cannot be done
-
if (isNumeric(numberVar)) {}
-
if (!isNaN(numberVar)) {}
-
if (isNumber(numberVar)) {}
-
if (type(numberVar)=='Number') {}
-
Every table must have a separate mapping file
-
Only parent table needs separate mapping fie
-
Only child table need separate mapping file
-
One mapping file can have mappings for one or more table.