Posts tagged 'javascript'
Hint: Variables scope “Javascript”
All variables declared in a function are defined throughout the function var scope = "global"; function f( ) { alert(scope); // Displays "undefined", not "global" var scope = "local"; // Variable initialized here, but defined everywhere alert(scope); // Displays...
Continue reading "Hint: Variables scope “Javascript”"
JQuery Visual studio documentation
JQuery version 1.3.2 Visual Studio documentation is available for download For more info about using this documentation for intellisense check this post...
Continue reading "JQuery Visual studio documentation"
Add reference to javascript file
You can add reference to another javascript file inside another javascript file for adding intellisense for other javascript files in Visual studio You can do so using the following syntax: /// <reference path="AnotherJSFile.js" /> and to Add Microsoft Ajax reference to javascript file...
Continue reading "Add reference to javascript file"


