Creates a link to the specified URL.
Example
/**
* Selects an array of HTML elements, using a css expression and executed through Sizzle.
* @link http://sizzlejs.com/
* @param {String} expression The css selection expression.
* @param {HTMLElement} context The element from which to execute selection.
* If omitted, it will default to the current document.
* @return {HTMLElement} The selected HTML element.
*/
function $$(expression, context)
{
var result = Sizzle(expression, context || document);
return result;
} Description
To link to an external URL, use the @link token. ECMADoc will then use generate this link in the 'See also' section of the documentation for the member it applies to.
See also
All tokens
Type resolving
@see
@author
@type