How and in what ways does JavaScript differ from JScript?
Latest Answer: The biggest difference now between Javascript and JScript are all of the additional commands that JScript supports that allow access to activeX and the local computer. These commands are intended for use on intranet sites where you know the configuration ...
How to redirect a page using JavaScript
Latest Answer: window.location="filename" ...
How to implement timer control in JavaScript
Latest Answer: set Timedout("alert('5 seconds')",5000);will display display alert box after 5 seconds ...
why is java swing so efficiently used in most graphics programming and not effected by systems graphic properties?
Latest Answer: Just write the name of the function and a pair of small brackets then semi-colon after it.example.functionName(); ...
Latest Answer: getElementById(""); ...
Latest Answer: for example form validation:function formvalidation(form){if (nonempty(form.req1)){if (nonempty(form.req2)){return true;}}return false;}function nonempty(elem){char str=elem.value;if(str.length==0){alert("u ...
Latest Answer: By disabling right click we can restrict user not to copy webpage sourcecode. ...
View page [1] 2 3 Next >>

Go Top