In VS 2012, intellisense of jquery works but not my custom function, Here is a simple example,
window.g = {};
//#region Public functions
/// <signature>
/// <summary>This function will return the current page mode.</summary>
/// <returns type="bool" />
/// </signature>
g.isPageInEditMode = function () {
return true;
}
This function does shows me summary.