jquery-1.3.2-vsdoc2.js
上传用户:zhl0745
上传日期:2022-04-11
资源大小:128k
文件大小:189k
源码类别:

行业应用

开发平台:

Java

  1. elem[ name ] != null ?
  2. elem[ name ] :
  3. elem.getAttribute( name ),
  4. value = result + "",
  5. type = match[2],
  6. check = match[4];
  7. return result == null ?
  8. type === "!=" :
  9. type === "=" ?
  10. value === check :
  11. type === "*=" ?
  12. value.indexOf(check) >= 0 :
  13. type === "~=" ?
  14. (" " + value + " ").indexOf(check) >= 0 :
  15. !check ?
  16. value && result !== false :
  17. type === "!=" ?
  18. value != check :
  19. type === "^=" ?
  20. value.indexOf(check) === 0 :
  21. type === "$=" ?
  22. value.substr(value.length - check.length) === check :
  23. type === "|=" ?
  24. value === check || value.substr(0, check.length + 1) === check + "-" :
  25. false;
  26. },
  27. POS: function(elem, match, i, array){
  28. var name = match[2], filter = Expr.setFilters[ name ];
  29. if ( filter ) {
  30. return filter( elem, i, match, array );
  31. }
  32. }
  33. }
  34. };
  35. var origPOS = Expr.match.POS;
  36. for ( var type in Expr.match ) {
  37. Expr.match[ type ] = RegExp( Expr.match[ type ].source + /(?![^[]*])(?![^(]*))/.source );
  38. }
  39. var makeArray = function(array, results) {
  40. array = Array.prototype.slice.call( array );
  41. if ( results ) {
  42. results.push.apply( results, array );
  43. return results;
  44. }
  45. return array;
  46. };
  47. // Perform a simple check to determine if the browser is capable of
  48. // converting a NodeList to an array using builtin methods.
  49. try {
  50. Array.prototype.slice.call( document.documentElement.childNodes );
  51. // Provide a fallback method if it does not work
  52. } catch(e){
  53. makeArray = function(array, results) {
  54. var ret = results || [];
  55. if ( toString.call(array) === "[object Array]" ) {
  56. Array.prototype.push.apply( ret, array );
  57. } else {
  58. if ( typeof array.length === "number" ) {
  59. for ( var i = 0, l = array.length; i < l; i++ ) {
  60. ret.push( array[i] );
  61. }
  62. } else {
  63. for ( var i = 0; array[i]; i++ ) {
  64. ret.push( array[i] );
  65. }
  66. }
  67. }
  68. return ret;
  69. };
  70. }
  71. var sortOrder;
  72. if ( document.documentElement.compareDocumentPosition ) {
  73. sortOrder = function( a, b ) {
  74. var ret = a.compareDocumentPosition(b) & 4 ? -1 : a === b ? 0 : 1;
  75. if ( ret === 0 ) {
  76. hasDuplicate = true;
  77. }
  78. return ret;
  79. };
  80. } else if ( "sourceIndex" in document.documentElement ) {
  81. sortOrder = function( a, b ) {
  82. var ret = a.sourceIndex - b.sourceIndex;
  83. if ( ret === 0 ) {
  84. hasDuplicate = true;
  85. }
  86. return ret;
  87. };
  88. } else if ( document.createRange ) {
  89. sortOrder = function( a, b ) {
  90. var aRange = a.ownerDocument.createRange(), bRange = b.ownerDocument.createRange();
  91. aRange.selectNode(a);
  92. aRange.collapse(true);
  93. bRange.selectNode(b);
  94. bRange.collapse(true);
  95. var ret = aRange.compareBoundaryPoints(Range.START_TO_END, bRange);
  96. if ( ret === 0 ) {
  97. hasDuplicate = true;
  98. }
  99. return ret;
  100. };
  101. }
  102. // [vsdoc] The following function has been modified for IntelliSense.
  103. // Check to see if the browser returns elements by name when
  104. // querying by getElementById (and provide a workaround)
  105. (function(){
  106. // We're going to inject a fake input element with a specified name
  107. ////var form = document.createElement("form"),
  108. //// id = "script" + (new Date).getTime();
  109. ////form.innerHTML = "<input name='" + id + "'/>";
  110. // Inject it into the root element, check its status, and remove it quickly
  111. ////var root = document.documentElement;
  112. ////root.insertBefore( form, root.firstChild );
  113. // The workaround has to do additional checks after a getElementById
  114. // Which slows things down for other browsers (hence the branching)
  115. ////if ( !!document.getElementById( id ) ) {
  116. Expr.find.ID = function(match, context, isXML){
  117. if ( typeof context.getElementById !== "undefined" && !isXML ) {
  118. var m = context.getElementById(match[1]);
  119. return m ? m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? [m] : undefined : [];
  120. }
  121. };
  122. Expr.filter.ID = function(elem, match){
  123. var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id");
  124. return elem.nodeType === 1 && node && node.nodeValue === match;
  125. };
  126. ////}
  127. ////root.removeChild( form );
  128. })();
  129. // [vsdoc] The following function has been modified for IntelliSense.
  130. (function(){
  131. // Check to see if the browser returns only elements
  132. // when doing getElementsByTagName("*")
  133. // Create a fake element
  134. ////var div = document.createElement("div");
  135. ////div.appendChild( document.createComment("") );
  136. // Make sure no comments are found
  137. ////if ( div.getElementsByTagName("*").length > 0 ) {
  138. Expr.find.TAG = function(match, context){
  139. var results = context.getElementsByTagName(match[1]);
  140. // Filter out possible comments
  141. if ( match[1] === "*" ) {
  142. var tmp = [];
  143. for ( var i = 0; results[i]; i++ ) {
  144. if ( results[i].nodeType === 1 ) {
  145. tmp.push( results[i] );
  146. }
  147. }
  148. results = tmp;
  149. }
  150. return results;
  151. };
  152. ////}
  153. // Check to see if an attribute returns normalized href attributes
  154. ////div.innerHTML = "<a href='#'></a>";
  155. ////if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" &&
  156. //// div.firstChild.getAttribute("href") !== "#" ) {
  157. Expr.attrHandle.href = function(elem){
  158. return elem.getAttribute("href", 2);
  159. };
  160. ////}
  161. })();
  162. if ( document.querySelectorAll ) (function(){
  163. var oldSizzle = Sizzle, div = document.createElement("div");
  164. div.innerHTML = "<p class='TEST'></p>";
  165. // Safari can't handle uppercase or unicode characters when
  166. // in quirks mode.
  167. if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) {
  168. return;
  169. }
  170. Sizzle = function(query, context, extra, seed){
  171. context = context || document;
  172. // Only use querySelectorAll on non-XML documents
  173. // (ID selectors don't work in non-HTML documents)
  174. if ( !seed && context.nodeType === 9 && !isXML(context) ) {
  175. try {
  176. return makeArray( context.querySelectorAll(query), extra );
  177. } catch(e){}
  178. }
  179. return oldSizzle(query, context, extra, seed);
  180. };
  181. Sizzle.find = oldSizzle.find;
  182. Sizzle.filter = oldSizzle.filter;
  183. Sizzle.selectors = oldSizzle.selectors;
  184. Sizzle.matches = oldSizzle.matches;
  185. })();
  186. if ( document.getElementsByClassName && document.documentElement.getElementsByClassName ) (function(){
  187. var div = document.createElement("div");
  188. div.innerHTML = "<div class='test e'></div><div class='test'></div>";
  189. // Opera can't find a second classname (in 9.6)
  190. if ( div.getElementsByClassName("e").length === 0 )
  191. return;
  192. // Safari caches class attributes, doesn't catch changes (in 3.2)
  193. div.lastChild.className = "e";
  194. if ( div.getElementsByClassName("e").length === 1 )
  195. return;
  196. Expr.order.splice(1, 0, "CLASS");
  197. Expr.find.CLASS = function(match, context, isXML) {
  198. if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) {
  199. return context.getElementsByClassName(match[1]);
  200. }
  201. };
  202. })();
  203. function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
  204. var sibDir = dir == "previousSibling" && !isXML;
  205. for ( var i = 0, l = checkSet.length; i < l; i++ ) {
  206. var elem = checkSet[i];
  207. if ( elem ) {
  208. if ( sibDir && elem.nodeType === 1 ){
  209. elem.sizcache = doneName;
  210. elem.sizset = i;
  211. }
  212. elem = elem[dir];
  213. var match = false;
  214. while ( elem ) {
  215. if ( elem.sizcache === doneName ) {
  216. match = checkSet[elem.sizset];
  217. break;
  218. }
  219. if ( elem.nodeType === 1 && !isXML ){
  220. elem.sizcache = doneName;
  221. elem.sizset = i;
  222. }
  223. if ( elem.nodeName === cur ) {
  224. match = elem;
  225. break;
  226. }
  227. elem = elem[dir];
  228. }
  229. checkSet[i] = match;
  230. }
  231. }
  232. }
  233. function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
  234. var sibDir = dir == "previousSibling" && !isXML;
  235. for ( var i = 0, l = checkSet.length; i < l; i++ ) {
  236. var elem = checkSet[i];
  237. if ( elem ) {
  238. if ( sibDir && elem.nodeType === 1 ) {
  239. elem.sizcache = doneName;
  240. elem.sizset = i;
  241. }
  242. elem = elem[dir];
  243. var match = false;
  244. while ( elem ) {
  245. if ( elem.sizcache === doneName ) {
  246. match = checkSet[elem.sizset];
  247. break;
  248. }
  249. if ( elem.nodeType === 1 ) {
  250. if ( !isXML ) {
  251. elem.sizcache = doneName;
  252. elem.sizset = i;
  253. }
  254. if ( typeof cur !== "string" ) {
  255. if ( elem === cur ) {
  256. match = true;
  257. break;
  258. }
  259. } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) {
  260. match = elem;
  261. break;
  262. }
  263. }
  264. elem = elem[dir];
  265. }
  266. checkSet[i] = match;
  267. }
  268. }
  269. }
  270. var contains = document.compareDocumentPosition ?  function(a, b){
  271. return a.compareDocumentPosition(b) & 16;
  272. } : function(a, b){
  273. return a !== b && (a.contains ? a.contains(b) : true);
  274. };
  275. var isXML = function(elem){
  276. return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" ||
  277. !!elem.ownerDocument && isXML( elem.ownerDocument );
  278. };
  279. var posProcess = function(selector, context){
  280. var tmpSet = [], later = "", match,
  281. root = context.nodeType ? [context] : context;
  282. // Position selectors must be done after the filter
  283. // And so must :not(positional) so we move all PSEUDOs to the end
  284. while ( (match = Expr.match.PSEUDO.exec( selector )) ) {
  285. later += match[0];
  286. selector = selector.replace( Expr.match.PSEUDO, "" );
  287. }
  288. selector = Expr.relative[selector] ? selector + "*" : selector;
  289. for ( var i = 0, l = root.length; i < l; i++ ) {
  290. Sizzle( selector, root[i], tmpSet );
  291. }
  292. return Sizzle.filter( later, tmpSet );
  293. };
  294. // EXPOSE
  295. jQuery.find = Sizzle;
  296. jQuery.filter = Sizzle.filter;
  297. jQuery.expr = Sizzle.selectors;
  298. jQuery.expr[":"] = jQuery.expr.filters;
  299. Sizzle.selectors.filters.hidden = function(elem){
  300. return elem.offsetWidth === 0 || elem.offsetHeight === 0;
  301. };
  302. Sizzle.selectors.filters.visible = function(elem){
  303. return elem.offsetWidth > 0 || elem.offsetHeight > 0;
  304. };
  305. Sizzle.selectors.filters.animated = function(elem){
  306. return jQuery.grep(jQuery.timers, function(fn){
  307. return elem === fn.elem;
  308. }).length;
  309. };
  310. jQuery.multiFilter = function( expr, elems, not ) {
  311. /// <summary>
  312. /// This member is internal only.
  313. /// </summary>
  314. /// <private />
  315. if ( not ) {
  316. expr = ":not(" + expr + ")";
  317. }
  318. return Sizzle.matches(expr, elems);
  319. };
  320. jQuery.dir = function( elem, dir ){
  321. /// <summary>
  322. /// This member is internal only.
  323. /// </summary>
  324. /// <private />
  325. // This member is not documented in the jQuery API: http://docs.jquery.com/Special:Search?ns0=1&search=dir
  326. var matched = [], cur = elem[dir];
  327. while ( cur && cur != document ) {
  328. if ( cur.nodeType == 1 )
  329. matched.push( cur );
  330. cur = cur[dir];
  331. }
  332. return matched;
  333. };
  334. jQuery.nth = function(cur, result, dir, elem){
  335. /// <summary>
  336. /// This member is internal only.
  337. /// </summary>
  338. /// <private />
  339. // This member is not documented in the jQuery API: http://docs.jquery.com/Special:Search?ns0=1&search=nth
  340. result = result || 1;
  341. var num = 0;
  342. for ( ; cur; cur = cur[dir] )
  343. if ( cur.nodeType == 1 && ++num == result )
  344. break;
  345. return cur;
  346. };
  347. jQuery.sibling = function(n, elem){
  348. /// <summary>
  349. /// This member is internal only.
  350. /// </summary>
  351. /// <private />
  352. // This member is not documented in the jQuery API: http://docs.jquery.com/Special:Search?ns0=1&search=nth
  353. var r = [];
  354. for ( ; n; n = n.nextSibling ) {
  355. if ( n.nodeType == 1 && n != elem )
  356. r.push( n );
  357. }
  358. return r;
  359. };
  360. return;
  361. window.Sizzle = Sizzle;
  362. })();
  363. /*
  364.  * A number of helper functions used for managing events.
  365.  * Many of the ideas behind this code originated from
  366.  * Dean Edwards' addEvent library.
  367.  */
  368. jQuery.event = {
  369. // Bind an event to an element
  370. // Original by Dean Edwards
  371. add: function(elem, types, handler, data) {
  372. /// <summary>
  373. /// This method is internal.
  374. /// </summary>
  375. /// <private />
  376. if ( elem.nodeType == 3 || elem.nodeType == 8 )
  377. return;
  378. // For whatever reason, IE has trouble passing the window object
  379. // around, causing it to be cloned in the process
  380. if ( elem.setInterval && elem != window )
  381. elem = window;
  382. // Make sure that the function being executed has a unique ID
  383. if ( !handler.guid )
  384. handler.guid = this.guid++;
  385. // if data is passed, bind to handler
  386. if ( data !== undefined ) {
  387. // Create temporary function pointer to original handler
  388. var fn = handler;
  389. // Create unique handler function, wrapped around original handler
  390. handler = this.proxy( fn );
  391. // Store data in unique handler
  392. handler.data = data;
  393. }
  394. // Init the element's event structure
  395. var events = jQuery.data(elem, "events") || jQuery.data(elem, "events", {}),
  396. handle = jQuery.data(elem, "handle") || jQuery.data(elem, "handle", function(){
  397. // Handle the second event of a trigger and when
  398. // an event is called after a page has unloaded
  399. return typeof jQuery !== "undefined" && !jQuery.event.triggered ?
  400. jQuery.event.handle.apply(arguments.callee.elem, arguments) :
  401. undefined;
  402. });
  403. // Add elem as a property of the handle function
  404. // This is to prevent a memory leak with non-native
  405. // event in IE.
  406. handle.elem = elem;
  407. // Handle multiple events separated by a space
  408. // jQuery(...).bind("mouseover mouseout", fn);
  409. jQuery.each(types.split(/s+/), function(index, type) {
  410. // Namespaced event handlers
  411. var namespaces = type.split(".");
  412. type = namespaces.shift();
  413. handler.type = namespaces.slice().sort().join(".");
  414. // Get the current list of functions bound to this event
  415. var handlers = events[type];
  416. if ( jQuery.event.specialAll[type] )
  417. jQuery.event.specialAll[type].setup.call(elem, data, namespaces);
  418. // Init the event handler queue
  419. if (!handlers) {
  420. handlers = events[type] = {};
  421. // Check for a special event handler
  422. // Only use addEventListener/attachEvent if the special
  423. // events handler returns false
  424. if ( !jQuery.event.special[type] || jQuery.event.special[type].setup.call(elem, data, namespaces) === false ) {
  425. // Bind the global event handler to the element
  426. if (elem.addEventListener)
  427. elem.addEventListener(type, handle, false);
  428. else if (elem.attachEvent)
  429. elem.attachEvent("on" + type, handle);
  430. }
  431. }
  432. // Add the function to the element's handler list
  433. handlers[handler.guid] = handler;
  434. // Keep track of which events have been used, for global triggering
  435. jQuery.event.global[type] = true;
  436. });
  437. // Nullify elem to prevent memory leaks in IE
  438. elem = null;
  439. },
  440. guid: 1,
  441. global: {},
  442. // Detach an event or set of events from an element
  443. remove: function(elem, types, handler) {
  444. /// <summary>
  445. /// This method is internal.
  446. /// </summary>
  447. /// <private />
  448. // don't do events on text and comment nodes
  449. if ( elem.nodeType == 3 || elem.nodeType == 8 )
  450. return;
  451. var events = jQuery.data(elem, "events"), ret, index;
  452. if ( events ) {
  453. // Unbind all events for the element
  454. if ( types === undefined || (typeof types === "string" && types.charAt(0) == ".") )
  455. for ( var type in events )
  456. this.remove( elem, type + (types || "") );
  457. else {
  458. // types is actually an event object here
  459. if ( types.type ) {
  460. handler = types.handler;
  461. types = types.type;
  462. }
  463. // Handle multiple events seperated by a space
  464. // jQuery(...).unbind("mouseover mouseout", fn);
  465. jQuery.each(types.split(/s+/), function(index, type){
  466. // Namespaced event handlers
  467. var namespaces = type.split(".");
  468. type = namespaces.shift();
  469. var namespace = RegExp("(^|\.)" + namespaces.slice().sort().join(".*\.") + "(\.|$)");
  470. if ( events[type] ) {
  471. // remove the given handler for the given type
  472. if ( handler )
  473. delete events[type][handler.guid];
  474. // remove all handlers for the given type
  475. else
  476. for ( var handle in events[type] )
  477. // Handle the removal of namespaced events
  478. if ( namespace.test(events[type][handle].type) )
  479. delete events[type][handle];
  480. if ( jQuery.event.specialAll[type] )
  481. jQuery.event.specialAll[type].teardown.call(elem, namespaces);
  482. // remove generic event handler if no more handlers exist
  483. for ( ret in events[type] ) break;
  484. if ( !ret ) {
  485. if ( !jQuery.event.special[type] || jQuery.event.special[type].teardown.call(elem, namespaces) === false ) {
  486. if (elem.removeEventListener)
  487. elem.removeEventListener(type, jQuery.data(elem, "handle"), false);
  488. else if (elem.detachEvent)
  489. elem.detachEvent("on" + type, jQuery.data(elem, "handle"));
  490. }
  491. ret = null;
  492. delete events[type];
  493. }
  494. }
  495. });
  496. }
  497. // Remove the expando if it's no longer used
  498. for ( ret in events ) break;
  499. if ( !ret ) {
  500. var handle = jQuery.data( elem, "handle" );
  501. if ( handle ) handle.elem = null;
  502. jQuery.removeData( elem, "events" );
  503. jQuery.removeData( elem, "handle" );
  504. }
  505. }
  506. },
  507. // bubbling is internal
  508. trigger: function( event, data, elem, bubbling ) {
  509. /// <summary>
  510. /// This method is internal.
  511. /// </summary>
  512. /// <private />
  513. // Event object or event type
  514. var type = event.type || event;
  515. if( !bubbling ){
  516. event = typeof event === "object" ?
  517. // jQuery.Event object
  518. event[expando] ? event :
  519. // Object literal
  520. jQuery.extend( jQuery.Event(type), event ) :
  521. // Just the event type (string)
  522. jQuery.Event(type);
  523. if ( type.indexOf("!") >= 0 ) {
  524. event.type = type = type.slice(0, -1);
  525. event.exclusive = true;
  526. }
  527. // Handle a global trigger
  528. if ( !elem ) {
  529. // Don't bubble custom events when global (to avoid too much overhead)
  530. event.stopPropagation();
  531. // Only trigger if we've ever bound an event for it
  532. if ( this.global[type] )
  533. jQuery.each( jQuery.cache, function(){
  534. if ( this.events && this.events[type] )
  535. jQuery.event.trigger( event, data, this.handle.elem );
  536. });
  537. }
  538. // Handle triggering a single element
  539. // don't do events on text and comment nodes
  540. if ( !elem || elem.nodeType == 3 || elem.nodeType == 8 )
  541. return undefined;
  542. // Clean up in case it is reused
  543. event.result = undefined;
  544. event.target = elem;
  545. // Clone the incoming data, if any
  546. data = jQuery.makeArray(data);
  547. data.unshift( event );
  548. }
  549. event.currentTarget = elem;
  550. // Trigger the event, it is assumed that "handle" is a function
  551. var handle = jQuery.data(elem, "handle");
  552. if ( handle )
  553. handle.apply( elem, data );
  554. // Handle triggering native .onfoo handlers (and on links since we don't call .click() for links)
  555. if ( (!elem[type] || (jQuery.nodeName(elem, 'a') && type == "click")) && elem["on"+type] && elem["on"+type].apply( elem, data ) === false )
  556. event.result = false;
  557. // Trigger the native events (except for clicks on links)
  558. if ( !bubbling && elem[type] && !event.isDefaultPrevented() && !(jQuery.nodeName(elem, 'a') && type == "click") ) {
  559. this.triggered = true;
  560. try {
  561. elem[ type ]();
  562. // prevent IE from throwing an error for some hidden elements
  563. } catch (e) {}
  564. }
  565. this.triggered = false;
  566. if ( !event.isPropagationStopped() ) {
  567. var parent = elem.parentNode || elem.ownerDocument;
  568. if ( parent )
  569. jQuery.event.trigger(event, data, parent, true);
  570. }
  571. },
  572. handle: function(event) {
  573. /// <summary>
  574. /// This method is internal.
  575. /// </summary>
  576. /// <private />
  577. // returned undefined or false
  578. var all, handlers;
  579. event = arguments[0] = jQuery.event.fix( event || window.event );
  580. event.currentTarget = this;
  581. // Namespaced event handlers
  582. var namespaces = event.type.split(".");
  583. event.type = namespaces.shift();
  584. // Cache this now, all = true means, any handler
  585. all = !namespaces.length && !event.exclusive;
  586. var namespace = RegExp("(^|\.)" + namespaces.slice().sort().join(".*\.") + "(\.|$)");
  587. handlers = ( jQuery.data(this, "events") || {} )[event.type];
  588. for ( var j in handlers ) {
  589. var handler = handlers[j];
  590. // Filter the functions by class
  591. if ( all || namespace.test(handler.type) ) {
  592. // Pass in a reference to the handler function itself
  593. // So that we can later remove it
  594. event.handler = handler;
  595. event.data = handler.data;
  596. var ret = handler.apply(this, arguments);
  597. if( ret !== undefined ){
  598. event.result = ret;
  599. if ( ret === false ) {
  600. event.preventDefault();
  601. event.stopPropagation();
  602. }
  603. }
  604. if( event.isImmediatePropagationStopped() )
  605. break;
  606. }
  607. }
  608. },
  609. props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
  610. fix: function(event) {
  611. /// <summary>
  612. /// This method is internal.
  613. /// </summary>
  614. /// <private />
  615. if ( event[expando] )
  616. return event;
  617. // store a copy of the original event object
  618. // and "clone" to set read-only properties
  619. var originalEvent = event;
  620. event = jQuery.Event( originalEvent );
  621. for ( var i = this.props.length, prop; i; ){
  622. prop = this.props[ --i ];
  623. event[ prop ] = originalEvent[ prop ];
  624. }
  625. // Fix target property, if necessary
  626. if ( !event.target )
  627. event.target = event.srcElement || document; // Fixes #1925 where srcElement might not be defined either
  628. // check if target is a textnode (safari)
  629. if ( event.target.nodeType == 3 )
  630. event.target = event.target.parentNode;
  631. // Add relatedTarget, if necessary
  632. if ( !event.relatedTarget && event.fromElement )
  633. event.relatedTarget = event.fromElement == event.target ? event.toElement : event.fromElement;
  634. // Calculate pageX/Y if missing and clientX/Y available
  635. if ( event.pageX == null && event.clientX != null ) {
  636. var doc = document.documentElement, body = document.body;
  637. event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc.clientLeft || 0);
  638. event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc.clientTop || 0);
  639. }
  640. // Add which for key events
  641. if ( !event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode) )
  642. event.which = event.charCode || event.keyCode;
  643. // Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs)
  644. if ( !event.metaKey && event.ctrlKey )
  645. event.metaKey = event.ctrlKey;
  646. // Add which for click: 1 == left; 2 == middle; 3 == right
  647. // Note: button is not normalized, so don't use it
  648. if ( !event.which && event.button )
  649. event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) ));
  650. return event;
  651. },
  652. proxy: function( fn, proxy ){
  653. /// <summary>
  654. /// This method is internal.
  655. /// </summary>
  656. /// <private />
  657. proxy = proxy || function(){ return fn.apply(this, arguments); };
  658. // Set the guid of unique handler to the same of original handler, so it can be removed
  659. proxy.guid = fn.guid = fn.guid || proxy.guid || this.guid++;
  660. // So proxy can be declared as an argument
  661. return proxy;
  662. },
  663. special: {
  664. ready: {
  665. /// <summary>
  666. /// This method is internal.
  667. /// </summary>
  668. /// <private />
  669. // Make sure the ready event is setup
  670. setup: bindReady,
  671. teardown: function() {}
  672. }
  673. },
  674. specialAll: {
  675. live: {
  676. setup: function( selector, namespaces ){
  677. jQuery.event.add( this, namespaces[0], liveHandler );
  678. },
  679. teardown:  function( namespaces ){
  680. if ( namespaces.length ) {
  681. var remove = 0, name = RegExp("(^|\.)" + namespaces[0] + "(\.|$)");
  682. jQuery.each( (jQuery.data(this, "events").live || {}), function(){
  683. if ( name.test(this.type) )
  684. remove++;
  685. });
  686. if ( remove < 1 )
  687. jQuery.event.remove( this, namespaces[0], liveHandler );
  688. }
  689. }
  690. }
  691. }
  692. };
  693. jQuery.Event = function( src ){
  694. // Allow instantiation without the 'new' keyword
  695. if( !this.preventDefault )
  696. return new jQuery.Event(src);
  697. // Event object
  698. if( src && src.type ){
  699. this.originalEvent = src;
  700. this.type = src.type;
  701. // Event type
  702. }else
  703. this.type = src;
  704. // timeStamp is buggy for some events on Firefox(#3843)
  705. // So we won't rely on the native value
  706. this.timeStamp = now();
  707. // Mark it as fixed
  708. this[expando] = true;
  709. };
  710. function returnFalse(){
  711. return false;
  712. }
  713. function returnTrue(){
  714. return true;
  715. }
  716. // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
  717. // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
  718. jQuery.Event.prototype = {
  719. preventDefault: function() {
  720. this.isDefaultPrevented = returnTrue;
  721. var e = this.originalEvent;
  722. if( !e )
  723. return;
  724. // if preventDefault exists run it on the original event
  725. if (e.preventDefault)
  726. e.preventDefault();
  727. // otherwise set the returnValue property of the original event to false (IE)
  728. e.returnValue = false;
  729. },
  730. stopPropagation: function() {
  731. this.isPropagationStopped = returnTrue;
  732. var e = this.originalEvent;
  733. if( !e )
  734. return;
  735. // if stopPropagation exists run it on the original event
  736. if (e.stopPropagation)
  737. e.stopPropagation();
  738. // otherwise set the cancelBubble property of the original event to true (IE)
  739. e.cancelBubble = true;
  740. },
  741. stopImmediatePropagation:function(){
  742. this.isImmediatePropagationStopped = returnTrue;
  743. this.stopPropagation();
  744. },
  745. isDefaultPrevented: returnFalse,
  746. isPropagationStopped: returnFalse,
  747. isImmediatePropagationStopped: returnFalse
  748. };
  749. // Checks if an event happened on an element within another element
  750. // Used in jQuery.event.special.mouseenter and mouseleave handlers
  751. var withinElement = function(event) {
  752. // Check if mouse(over|out) are still within the same parent element
  753. var parent = event.relatedTarget;
  754. // Traverse up the tree
  755. while ( parent && parent != this )
  756. try { parent = parent.parentNode; }
  757. catch(e) { parent = this; }
  758. if( parent != this ){
  759. // set the correct event type
  760. event.type = event.data;
  761. // handle event if we actually just moused on to a non sub-element
  762. jQuery.event.handle.apply( this, arguments );
  763. }
  764. };
  765. jQuery.each({ 
  766. mouseover: 'mouseenter', 
  767. mouseout: 'mouseleave'
  768. }, function( orig, fix ){
  769. jQuery.event.special[ fix ] = {
  770. setup: function(){
  771. /// <summary>
  772. /// This method is internal.
  773. /// </summary>
  774. /// <private />
  775. jQuery.event.add( this, orig, withinElement, fix );
  776. },
  777. teardown: function(){
  778. /// <summary>
  779. /// This method is internal.
  780. /// </summary>
  781. /// <private />
  782. jQuery.event.remove( this, orig, withinElement );
  783. }
  784. };    
  785. });
  786. jQuery.fn.extend({
  787. bind: function( type, data, fn ) {
  788. /// <summary>
  789. /// Binds a handler to one or more events for each matched element.  Can also bind custom events.
  790. /// </summary>
  791. /// <param name="type" type="String">One or more event types separated by a space.  Built-in event type values are: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error .</param>
  792. /// <param name="data" optional="true" type="Object">Additional data passed to the event handler as event.data</param>
  793. /// <param name="fn" type="Function">A function to bind to the event on each of the set of matched elements.  function callback(eventObject) such that this corresponds to the dom element.</param>
  794. return type == "unload" ? this.one(type, data, fn) : this.each(function(){
  795. jQuery.event.add( this, type, fn || data, fn && data );
  796. });
  797. },
  798. one: function( type, data, fn ) {
  799. /// <summary>
  800. /// Binds a handler to one or more events to be executed exactly once for each matched element.
  801. /// </summary>
  802. /// <param name="type" type="String">One or more event types separated by a space.  Built-in event type values are: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error .</param>
  803. /// <param name="data" optional="true" type="Object">Additional data passed to the event handler as event.data</param>
  804. /// <param name="fn" type="Function">A function to bind to the event on each of the set of matched elements.  function callback(eventObject) such that this corresponds to the dom element.</param>
  805. var one = jQuery.event.proxy( fn || data, function(event) {
  806. jQuery(this).unbind(event, one);
  807. return (fn || data).apply( this, arguments );
  808. });
  809. return this.each(function(){
  810. jQuery.event.add( this, type, one, fn && data);
  811. });
  812. },
  813. unbind: function( type, fn ) {
  814. /// <summary>
  815. /// Unbinds a handler from one or more events for each matched element.
  816. /// </summary>
  817. /// <param name="type" type="String">One or more event types separated by a space.  Built-in event type values are: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error .</param>
  818. /// <param name="fn" type="Function">A function to bind to the event on each of the set of matched elements.  function callback(eventObject) such that this corresponds to the dom element.</param>
  819. return this.each(function(){
  820. jQuery.event.remove( this, type, fn );
  821. });
  822. },
  823. trigger: function( type, data ) {
  824. /// <summary>
  825. /// Triggers a type of event on every matched element.
  826. /// </summary>
  827. /// <param name="type" type="String">One or more event types separated by a space.  Built-in event type values are: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error .</param>
  828. /// <param name="data" optional="true" type="Array">Additional data passed to the event handler as additional arguments.</param>
  829. /// <param name="fn" type="Function">This parameter is undocumented.</param>
  830. return this.each(function(){
  831. jQuery.event.trigger( type, data, this );
  832. });
  833. },
  834. triggerHandler: function( type, data ) {
  835. /// <summary>
  836. /// Triggers all bound event handlers on an element for a specific event type without executing the browser's default actions.
  837. /// </summary>
  838. /// <param name="type" type="String">One or more event types separated by a space.  Built-in event type values are: blur, focus, load, resize, scroll, unload, click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, mouseenter, mouseleave, change, select, submit, keydown, keypress, keyup, error .</param>
  839. /// <param name="data" optional="true" type="Array">Additional data passed to the event handler as additional arguments.</param>
  840. /// <param name="fn" type="Function">This parameter is undocumented.</param>
  841. if( this[0] ){
  842. var event = jQuery.Event(type);
  843. event.preventDefault();
  844. event.stopPropagation();
  845. jQuery.event.trigger( event, data, this[0] );
  846. return event.result;
  847. }
  848. },
  849. toggle: function( fn ) {
  850. /// <summary>
  851. /// Toggles among two or more function calls every other click.
  852. /// </summary>
  853. /// <param name="fn" type="Function">The functions among which to toggle execution</param>
  854. // Save reference to arguments for access in closure
  855. var args = arguments, i = 1;
  856. // link all the functions, so any of them can unbind this click handler
  857. while( i < args.length )
  858. jQuery.event.proxy( fn, args[i++] );
  859. return this.click( jQuery.event.proxy( fn, function(event) {
  860. // Figure out which function to execute
  861. this.lastToggle = ( this.lastToggle || 0 ) % i;
  862. // Make sure that clicks stop
  863. event.preventDefault();
  864. // and execute the function
  865. return args[ this.lastToggle++ ].apply( this, arguments ) || false;
  866. }));
  867. },
  868. hover: function(fnOver, fnOut) {
  869. /// <summary>
  870. /// Simulates hovering (moving the mouse on or off of an object).
  871. /// </summary>
  872. /// <param name="fnOver" type="Function">The function to fire when the mouse is moved over a matched element.</param>
  873. /// <param name="fnOut" type="Function">The function to fire when the mouse is moved off of a matched element.</param>
  874. return this.mouseenter(fnOver).mouseleave(fnOut);
  875. },
  876. ready: function(fn) {
  877. /// <summary>
  878. /// Binds a function to be executed whenever the DOM is ready to be traversed and manipulated.
  879. /// </summary>
  880. /// <param name="fn" type="Function">The function to be executed when the DOM is ready.</param>
  881. // Attach the listeners
  882. bindReady();
  883. // If the DOM is already ready
  884. if ( jQuery.isReady )
  885. // Execute the function immediately
  886. fn.call( document, jQuery );
  887. // Otherwise, remember the function for later
  888. else
  889. // Add the function to the wait list
  890. jQuery.readyList.push( fn );
  891. return this;
  892. },
  893. live: function( type, fn ){
  894. /// <summary>
  895. /// Binds a handler to an event (like click) for all current - and future - matched element. Can also bind custom events.
  896. /// </summary>
  897. /// <param name="type" type="String">An event type</param>
  898. /// <param name="fn" type="Function">A function to bind to the event on each of the set of matched elements</param>
  899. var proxy = jQuery.event.proxy( fn );
  900. proxy.guid += this.selector + type;
  901. jQuery(document).bind( liveConvert(type, this.selector), this.selector, proxy );
  902. return this;
  903. },
  904. die: function( type, fn ){
  905. /// <summary>
  906. /// This does the opposite of live, it removes a bound live event.
  907. /// You can also unbind custom events registered with live.
  908. /// If the type is provided, all bound live events of that type are removed.
  909. /// If the function that was passed to live is provided as the second argument, only that specific event handler is removed.
  910. /// </summary>
  911. /// <param name="type" type="String">A live event type to unbind.</param>
  912. /// <param name="fn" type="Function">A function to unbind from the event on each of the set of matched elements.</param>
  913. jQuery(document).unbind( liveConvert(type, this.selector), fn ? { guid: fn.guid + this.selector + type } : null );
  914. return this;
  915. }
  916. });
  917. function liveHandler( event ){
  918. var check = RegExp("(^|\.)" + event.type + "(\.|$)"),
  919. stop = true,
  920. elems = [];
  921. jQuery.each(jQuery.data(this, "events").live || [], function(i, fn){
  922. if ( check.test(fn.type) ) {
  923. var elem = jQuery(event.target).closest(fn.data)[0];
  924. if ( elem )
  925. elems.push({ elem: elem, fn: fn });
  926. }
  927. });
  928. elems.sort(function(a,b) {
  929. return jQuery.data(a.elem, "closest") - jQuery.data(b.elem, "closest");
  930. });
  931. jQuery.each(elems, function(){
  932. if ( this.fn.call(this.elem, event, this.fn.data) === false )
  933. return (stop = false);
  934. });
  935. return stop;
  936. }
  937. function liveConvert(type, selector){
  938. return ["live", type, selector.replace(/./g, "`").replace(/ /g, "|")].join(".");
  939. }
  940. jQuery.extend({
  941. isReady: false,
  942. readyList: [],
  943. // Handle when the DOM is ready
  944. ready: function() {
  945. /// <summary>
  946. /// This method is internal.
  947. /// </summary>
  948. /// <private />
  949. // Make sure that the DOM is not already loaded
  950. if ( !jQuery.isReady ) {
  951. // Remember that the DOM is ready
  952. jQuery.isReady = true;
  953. // If there are functions bound, to execute
  954. if ( jQuery.readyList ) {
  955. // Execute all of them
  956. jQuery.each( jQuery.readyList, function(){
  957. this.call( document, jQuery );
  958. });
  959. // Reset the list of functions
  960. jQuery.readyList = null;
  961. }
  962. // Trigger any bound ready events
  963. jQuery(document).triggerHandler("ready");
  964. }
  965. }
  966. });
  967. var readyBound = false;
  968. function bindReady(){
  969. if ( readyBound ) return;
  970. readyBound = true;
  971. // Mozilla, Opera and webkit nightlies currently support this event
  972. if ( document.addEventListener ) {
  973. // Use the handy event callback
  974. document.addEventListener( "DOMContentLoaded", function(){
  975. document.removeEventListener( "DOMContentLoaded", arguments.callee, false );
  976. jQuery.ready();
  977. }, false );
  978. // If IE event model is used
  979. } else if ( document.attachEvent ) {
  980. // ensure firing before onload,
  981. // maybe late but safe also for iframes
  982. document.attachEvent("onreadystatechange", function(){
  983. if ( document.readyState === "complete" ) {
  984. document.detachEvent( "onreadystatechange", arguments.callee );
  985. jQuery.ready();
  986. }
  987. });
  988. // If IE and not an iframe
  989. // continually check to see if the document is ready
  990. if ( document.documentElement.doScroll && window == window.top ) (function(){
  991. if ( jQuery.isReady ) return;
  992. try {
  993. // If IE is used, use the trick by Diego Perini
  994. // http://javascript.nwbox.com/IEContentLoaded/
  995. document.documentElement.doScroll("left");
  996. } catch( error ) {
  997. setTimeout( arguments.callee, 0 );
  998. return;
  999. }
  1000. // and execute any waiting functions
  1001. jQuery.ready();
  1002. })();
  1003. }
  1004. // A fallback to window.onload, that will always work
  1005. jQuery.event.add( window, "load", jQuery.ready );
  1006. }
  1007. // [vsdoc] The following section has been denormalized from original sources for IntelliSense.
  1008. jQuery.each( ("blur,focus,load,resize,scroll,unload,click,dblclick," +
  1009. "mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave," +
  1010. "change,select,submit,keydown,keypress,keyup,error").split(","), function(i, name){
  1011. // Handle event binding
  1012. jQuery.fn[name] = function(fn){
  1013. return fn ? this.bind(name, fn) : this.trigger(name);
  1014. };
  1015. });
  1016. jQuery.fn["blur"] = function(fn) {
  1017. /// <summary>
  1018. /// 1: blur() - Triggers the blur event of each matched element.
  1019. /// 2: blur(fn) - Binds a function to the blur event of each matched element.
  1020. /// </summary>
  1021. /// <param name="fn" type="Function">The function to execute.</param>
  1022. /// <returns type="jQuery" />
  1023. return fn ? this.bind("blur", fn) : this.trigger(name);
  1024. };
  1025. jQuery.fn["focus"] = function(fn) {
  1026. /// <summary>
  1027. /// 1: focus() - Triggers the focus event of each matched element.
  1028. /// 2: focus(fn) - Binds a function to the focus event of each matched element.
  1029. /// </summary>
  1030. /// <param name="fn" type="Function">The function to execute.</param>
  1031. /// <returns type="jQuery" />
  1032. return fn ? this.bind("focus", fn) : this.trigger(name);
  1033. };
  1034. jQuery.fn["load"] = function(fn) {
  1035. /// <summary>
  1036. /// 1: load() - Triggers the load event of each matched element.
  1037. /// 2: load(fn) - Binds a function to the load event of each matched element.
  1038. /// </summary>
  1039. /// <param name="fn" type="Function">The function to execute.</param>
  1040. /// <returns type="jQuery" />
  1041. return fn ? this.bind("load", fn) : this.trigger(name);
  1042. };
  1043. jQuery.fn["resize"] = function(fn) {
  1044. /// <summary>
  1045. /// 1: resize() - Triggers the resize event of each matched element.
  1046. /// 2: resize(fn) - Binds a function to the resize event of each matched element.
  1047. /// </summary>
  1048. /// <param name="fn" type="Function">The function to execute.</param>
  1049. /// <returns type="jQuery" />
  1050. return fn ? this.bind("resize", fn) : this.trigger(name);
  1051. };
  1052. jQuery.fn["scroll"] = function(fn) {
  1053. /// <summary>
  1054. /// 1: scroll() - Triggers the scroll event of each matched element.
  1055. /// 2: scroll(fn) - Binds a function to the scroll event of each matched element.
  1056. /// </summary>
  1057. /// <param name="fn" type="Function">The function to execute.</param>
  1058. /// <returns type="jQuery" />
  1059. return fn ? this.bind("scroll", fn) : this.trigger(name);
  1060. };
  1061. jQuery.fn["unload"] = function(fn) {
  1062. /// <summary>
  1063. /// 1: unload() - Triggers the unload event of each matched element.
  1064. /// 2: unload(fn) - Binds a function to the unload event of each matched element.
  1065. /// </summary>
  1066. /// <param name="fn" type="Function">The function to execute.</param>
  1067. /// <returns type="jQuery" />
  1068. return fn ? this.bind("unload", fn) : this.trigger(name);
  1069. };
  1070. jQuery.fn["click"] = function(fn) {
  1071. /// <summary>
  1072. /// 1: click() - Triggers the click event of each matched element.
  1073. /// 2: click(fn) - Binds a function to the click event of each matched element.
  1074. /// </summary>
  1075. /// <param name="fn" type="Function">The function to execute.</param>
  1076. /// <returns type="jQuery" />
  1077. return fn ? this.bind("click", fn) : this.trigger(name);
  1078. };
  1079. jQuery.fn["dblclick"] = function(fn) {
  1080. /// <summary>
  1081. /// 1: dblclick() - Triggers the dblclick event of each matched element.
  1082. /// 2: dblclick(fn) - Binds a function to the dblclick event of each matched element.
  1083. /// </summary>
  1084. /// <param name="fn" type="Function">The function to execute.</param>
  1085. /// <returns type="jQuery" />
  1086. return fn ? this.bind("dblclick", fn) : this.trigger(name);
  1087. };
  1088. jQuery.fn["mousedown"] = function(fn) {
  1089. /// <summary>
  1090. /// Binds a function to the mousedown event of each matched element. 
  1091. /// </summary>
  1092. /// <param name="fn" type="Function">The function to execute.</param>
  1093. /// <returns type="jQuery" />
  1094. return fn ? this.bind("mousedown", fn) : this.trigger(name);
  1095. };
  1096. jQuery.fn["mouseup"] = function(fn) {
  1097. /// <summary>
  1098. /// Bind a function to the mouseup event of each matched element.
  1099. /// </summary>
  1100. /// <param name="fn" type="Function">The function to execute.</param>
  1101. /// <returns type="jQuery" />
  1102. return fn ? this.bind("mouseup", fn) : this.trigger(name);
  1103. };
  1104. jQuery.fn["mousemove"] = function(fn) {
  1105. /// <summary>
  1106. /// Bind a function to the mousemove event of each matched element.
  1107. /// </summary>
  1108. /// <param name="fn" type="Function">The function to execute.</param>
  1109. /// <returns type="jQuery" />
  1110. return fn ? this.bind("mousemove", fn) : this.trigger(name);
  1111. };
  1112. jQuery.fn["mouseover"] = function(fn) {
  1113. /// <summary>
  1114. /// Bind a function to the mouseover event of each matched element. 
  1115. /// </summary>
  1116. /// <param name="fn" type="Function">The function to execute.</param>
  1117. /// <returns type="jQuery" />
  1118. return fn ? this.bind("mouseover", fn) : this.trigger(name);
  1119. };
  1120. jQuery.fn["mouseout"] = function(fn) {
  1121. /// <summary>
  1122. /// Bind a function to the mouseout event of each matched element. 
  1123. /// </summary>
  1124. /// <param name="fn" type="Function">The function to execute.</param>
  1125. /// <returns type="jQuery" />
  1126. return fn ? this.bind("mouseout", fn) : this.trigger(name);
  1127. };
  1128. jQuery.fn["mouseenter"] = function(fn) {
  1129. /// <summary>
  1130. /// Bind a function to the mouseenter event of each matched element. 
  1131. /// </summary>
  1132. /// <param name="fn" type="Function">The function to execute.</param>
  1133. /// <returns type="jQuery" />
  1134. return fn ? this.bind("mouseenter", fn) : this.trigger(name);
  1135. };
  1136. jQuery.fn["mouseleave"] = function(fn) {
  1137. /// <summary>
  1138. /// Bind a function to the mouseleave event of each matched element. 
  1139. /// </summary>
  1140. /// <param name="fn" type="Function">The function to execute.</param>
  1141. /// <returns type="jQuery" />
  1142. return fn ? this.bind("mouseleave", fn) : this.trigger(name);
  1143. };
  1144. jQuery.fn["change"] = function(fn) {
  1145. /// <summary>
  1146. /// 1: change() - Triggers the change event of each matched element.
  1147. /// 2: change(fn) - Binds a function to the change event of each matched element.
  1148. /// </summary>
  1149. /// <param name="fn" type="Function">The function to execute.</param>
  1150. /// <returns type="jQuery" />
  1151. return fn ? this.bind("change", fn) : this.trigger(name);
  1152. };
  1153. jQuery.fn["select"] = function(fn) {
  1154. /// <summary>
  1155. /// 1: select() - Triggers the select event of each matched element.
  1156. /// 2: select(fn) - Binds a function to the select event of each matched element.
  1157. /// </summary>
  1158. /// <param name="fn" type="Function">The function to execute.</param>
  1159. /// <returns type="jQuery" />
  1160. return fn ? this.bind("select", fn) : this.trigger(name);
  1161. };
  1162. jQuery.fn["submit"] = function(fn) {
  1163. /// <summary>
  1164. /// 1: submit() - Triggers the submit event of each matched element.
  1165. /// 2: submit(fn) - Binds a function to the submit event of each matched element.
  1166. /// </summary>
  1167. /// <param name="fn" type="Function">The function to execute.</param>
  1168. /// <returns type="jQuery" />
  1169. return fn ? this.bind("submit", fn) : this.trigger(name);
  1170. };
  1171. jQuery.fn["keydown"] = function(fn) {
  1172. /// <summary>
  1173. /// 1: keydown() - Triggers the keydown event of each matched element.
  1174. /// 2: keydown(fn) - Binds a function to the keydown event of each matched element.
  1175. /// </summary>
  1176. /// <param name="fn" type="Function">The function to execute.</param>
  1177. /// <returns type="jQuery" />
  1178. return fn ? this.bind("keydown", fn) : this.trigger(name);
  1179. };
  1180. jQuery.fn["keypress"] = function(fn) {
  1181. /// <summary>
  1182. /// 1: keypress() - Triggers the keypress event of each matched element.
  1183. /// 2: keypress(fn) - Binds a function to the keypress event of each matched element.
  1184. /// </summary>
  1185. /// <param name="fn" type="Function">The function to execute.</param>
  1186. /// <returns type="jQuery" />
  1187. return fn ? this.bind("keypress", fn) : this.trigger(name);
  1188. };
  1189. jQuery.fn["keyup"] = function(fn) {
  1190. /// <summary>
  1191. /// 1: keyup() - Triggers the keyup event of each matched element.
  1192. /// 2: keyup(fn) - Binds a function to the keyup event of each matched element.
  1193. /// </summary>
  1194. /// <param name="fn" type="Function">The function to execute.</param>
  1195. /// <returns type="jQuery" />
  1196. return fn ? this.bind("keyup", fn) : this.trigger(name);
  1197. };
  1198. jQuery.fn["error"] = function(fn) {
  1199. /// <summary>
  1200. /// 1: error() - Triggers the error event of each matched element.
  1201. /// 2: error(fn) - Binds a function to the error event of each matched element.
  1202. /// </summary>
  1203. /// <param name="fn" type="Function">The function to execute.</param>
  1204. /// <returns type="jQuery" />
  1205. return fn ? this.bind("error", fn) : this.trigger(name);
  1206. };
  1207. // Prevent memory leaks in IE
  1208. // And prevent errors on refresh with events like mouseover in other browsers
  1209. // Window isn't included so as not to unbind existing unload events
  1210. jQuery( window ).bind( 'unload', function(){ 
  1211. for ( var id in jQuery.cache )
  1212. // Skip the window
  1213. if ( id != 1 && jQuery.cache[ id ].handle )
  1214. jQuery.event.remove( jQuery.cache[ id ].handle.elem );
  1215. });
  1216. // [vsdoc] The following function has been modified for IntelliSense.
  1217. // [vsdoc] Stubbing support properties to "false" since we simulate IE.
  1218. (function(){
  1219. jQuery.support = {};
  1220. jQuery.support = {
  1221. // IE strips leading whitespace when .innerHTML is used
  1222. leadingWhitespace: false,
  1223. // Make sure that tbody elements aren't automatically inserted
  1224. // IE will insert them into empty tables
  1225. tbody: false,
  1226. // Make sure that you can get all elements in an <object> element
  1227. // IE 7 always returns no results
  1228. objectAll: false,
  1229. // Make sure that link elements get serialized correctly by innerHTML
  1230. // This requires a wrapper element in IE
  1231. htmlSerialize: false,
  1232. // Get the style information from getAttribute
  1233. // (IE uses .cssText insted)
  1234. style: false,
  1235. // Make sure that URLs aren't manipulated
  1236. // (IE normalizes it by default)
  1237. hrefNormalized: false,
  1238. // Make sure that element opacity exists
  1239. // (IE uses filter instead)
  1240. opacity: false,
  1241. // Verify style float existence
  1242. // (IE uses styleFloat instead of cssFloat)
  1243. cssFloat: false,
  1244. // Will be defined later
  1245. scriptEval: false,
  1246. noCloneEvent: false,
  1247. boxModel: false
  1248. };
  1249. })();
  1250. // [vsdoc] The following member has been modified for IntelliSense.
  1251. var styleFloat = "styleFloat";
  1252. jQuery.props = {
  1253. "for": "htmlFor",
  1254. "class": "className",
  1255. "float": styleFloat,
  1256. cssFloat: styleFloat,
  1257. styleFloat: styleFloat,
  1258. readonly: "readOnly",
  1259. maxlength: "maxLength",
  1260. cellspacing: "cellSpacing",
  1261. rowspan: "rowSpan",
  1262. tabindex: "tabIndex"
  1263. };
  1264. jQuery.fn.extend({
  1265. // Keep a copy of the old load
  1266. _load: jQuery.fn.load,
  1267. load: function( url, params, callback ) {
  1268. /// <summary>
  1269. /// Loads HTML from a remote file and injects it into the DOM.  By default performs a GET request, but if parameters are included
  1270. /// then a POST will be performed.
  1271. /// </summary>
  1272. /// <param name="url" type="String">The URL of the HTML page to load.</param>
  1273. /// <param name="data" optional="true" type="Map">Key/value pairs that will be sent to the server.</param>
  1274. /// <param name="callback" optional="true" type="Function">The function called when the AJAX request is complete.  It should map function(responseText, textStatus, XMLHttpRequest) such that this maps the injected DOM element.</param>
  1275. /// <returns type="jQuery" />
  1276. if ( typeof url !== "string" )
  1277. return this._load( url );
  1278. var off = url.indexOf(" ");
  1279. if ( off >= 0 ) {
  1280. var selector = url.slice(off, url.length);
  1281. url = url.slice(0, off);
  1282. }
  1283. // Default to a GET request
  1284. var type = "GET";
  1285. // If the second parameter was provided
  1286. if ( params )
  1287. // If it's a function
  1288. if ( jQuery.isFunction( params ) ) {
  1289. // We assume that it's the callback
  1290. callback = params;
  1291. params = null;
  1292. // Otherwise, build a param string
  1293. } else if( typeof params === "object" ) {
  1294. params = jQuery.param( params );
  1295. type = "POST";
  1296. }
  1297. var self = this;
  1298. // Request the remote document
  1299. jQuery.ajax({
  1300. url: url,
  1301. type: type,
  1302. dataType: "html",
  1303. data: params,
  1304. complete: function(res, status){
  1305. // If successful, inject the HTML into all the matched elements
  1306. if ( status == "success" || status == "notmodified" )
  1307. // See if a selector was specified
  1308. self.html( selector ?
  1309. // Create a dummy div to hold the results
  1310. jQuery("<div/>")
  1311. // inject the contents of the document in, removing the scripts
  1312. // to avoid any 'Permission Denied' errors in IE
  1313. .append(res.responseText.replace(/<script(.|s)*?/script>/g, ""))
  1314. // Locate the specified elements
  1315. .find(selector) :
  1316. // If not, just inject the full result
  1317. res.responseText );
  1318. if( callback )
  1319. self.each( callback, [res.responseText, status, res] );
  1320. }
  1321. });
  1322. return this;
  1323. },
  1324. serialize: function() {
  1325. /// <summary>
  1326. /// Serializes a set of input elements into a string of data.
  1327. /// </summary>
  1328. /// <returns type="String">The serialized result</returns>
  1329. return jQuery.param(this.serializeArray());
  1330. },
  1331. serializeArray: function() {
  1332. /// <summary>
  1333. /// Serializes all forms and form elements but returns a JSON data structure.
  1334. /// </summary>
  1335. /// <returns type="String">A JSON data structure representing the serialized items.</returns>
  1336. return this.map(function(){
  1337. return this.elements ? jQuery.makeArray(this.elements) : this;
  1338. })
  1339. .filter(function(){
  1340. return this.name && !this.disabled &&
  1341. (this.checked || /select|textarea/i.test(this.nodeName) ||
  1342. /text|hidden|password|search/i.test(this.type));
  1343. })
  1344. .map(function(i, elem){
  1345. var val = jQuery(this).val();
  1346. return val == null ? null :
  1347. jQuery.isArray(val) ?
  1348. jQuery.map( val, function(val, i){
  1349. return {name: elem.name, value: val};
  1350. }) :
  1351. {name: elem.name, value: val};
  1352. }).get();
  1353. }
  1354. });
  1355. // [vsdoc] The following section has been denormalized from original sources for IntelliSense.
  1356. // Attach a bunch of functions for handling common AJAX events
  1357. // jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){
  1358. //  jQuery.fn[o] = function(f){
  1359. //  return this.bind(o, f);
  1360. //  };
  1361. // });
  1362. jQuery.fn["ajaxStart"] = function(callback) {
  1363. /// <summary>
  1364. /// Attach a function to be executed whenever an AJAX request begins and there is none already active. This is an Ajax Event.
  1365. /// </summary>
  1366. /// <param name="callback" type="Function">The function to execute.</param>
  1367. /// <returns type="jQuery" />
  1368. return this.bind("ajaxStart", f);
  1369. };
  1370. jQuery.fn["ajaxStop"] = function(callback) {
  1371. /// <summary>
  1372. /// Attach a function to be executed whenever all AJAX requests have ended. This is an Ajax Event.
  1373. /// </summary>
  1374. /// <param name="callback" type="Function">The function to execute.</param>
  1375. /// <returns type="jQuery" />
  1376. return this.bind("ajaxStop", f);
  1377. };
  1378. jQuery.fn["ajaxComplete"] = function(callback) {
  1379. /// <summary>
  1380. /// Attach a function to be executed whenever an AJAX request completes. This is an Ajax Event.
  1381. /// </summary>
  1382. /// <param name="callback" type="Function">The function to execute.</param>
  1383. /// <returns type="jQuery" />
  1384. return this.bind("ajaxComplete", f);
  1385. };
  1386. jQuery.fn["ajaxError"] = function(callback) {
  1387. /// <summary>
  1388. /// Attach a function to be executed whenever an AJAX request fails. This is an Ajax Event.
  1389. /// </summary>
  1390. /// <param name="callback" type="Function">The function to execute.</param>
  1391. /// <returns type="jQuery" />
  1392. return this.bind("ajaxError", f);
  1393. };
  1394. jQuery.fn["ajaxSuccess"] = function(callback) {
  1395. /// <summary>
  1396. /// Attach a function to be executed whenever an AJAX request completes successfully. This is an Ajax Event.
  1397. /// </summary>
  1398. /// <param name="callback" type="Function">The function to execute.</param>
  1399. /// <returns type="jQuery" />
  1400. return this.bind("ajaxSuccess", f);
  1401. };
  1402. jQuery.fn["ajaxSend"] = function(callback) {
  1403. /// <summary>
  1404. /// Attach a function to be executed before an AJAX request is sent. This is an Ajax Event.
  1405. /// </summary>
  1406. /// <param name="callback" type="Function">The function to execute.</param>
  1407. /// <returns type="jQuery" />
  1408. return this.bind("ajaxSend", f);
  1409. };
  1410. var jsc = now();
  1411. jQuery.extend({
  1412.   
  1413. get: function( url, data, callback, type ) {
  1414. /// <summary>
  1415. /// Loads a remote page using an HTTP GET request.
  1416. /// </summary>
  1417. /// <param name="url" type="String">The URL of the HTML page to load.</param>
  1418. /// <param name="data" optional="true" type="Map">Key/value pairs that will be sent to the server.</param>
  1419. /// <param name="callback" optional="true" type="Function">The function called when the AJAX request is complete.  It should map function(responseText, textStatus) such that this maps the options for this AJAX request.</param>
  1420. /// <param name="type" optional="true" type="String">Type of data to be returned to callback function.  Valid valiues are xml, html, script, json, text, _default.</param>
  1421. /// <returns type="XMLHttpRequest" />
  1422. // shift arguments if data argument was ommited
  1423. if ( jQuery.isFunction( data ) ) {
  1424. callback = data;
  1425. data = null;
  1426. }
  1427. return jQuery.ajax({
  1428. type: "GET",
  1429. url: url,
  1430. data: data,
  1431. success: callback,
  1432. dataType: type
  1433. });
  1434. },
  1435. getScript: function( url, callback ) {
  1436. /// <summary>
  1437. /// Loads and executes a local JavaScript file using an HTTP GET request.
  1438. /// </summary>
  1439. /// <param name="url" type="String">The URL of the script to load.</param>
  1440. /// <param name="callback" optional="true" type="Function">The function called when the AJAX request is complete.  It should map function(data, textStatus) such that this maps the options for the AJAX request.</param>
  1441. /// <returns type="XMLHttpRequest" />
  1442. return jQuery.get(url, null, callback, "script");
  1443. },
  1444. getJSON: function( url, data, callback ) {
  1445. /// <summary>
  1446. /// Loads JSON data using an HTTP GET request.
  1447. /// </summary>
  1448. /// <param name="url" type="String">The URL of the JSON data to load.</param>
  1449. /// <param name="data" optional="true" type="Map">Key/value pairs that will be sent to the server.</param>
  1450. /// <param name="callback" optional="true" type="Function">The function called when the AJAX request is complete if the data is loaded successfully.  It should map function(data, textStatus) such that this maps the options for this AJAX request.</param>
  1451. /// <returns type="XMLHttpRequest" />
  1452. return jQuery.get(url, data, callback, "json");
  1453. },
  1454. post: function( url, data, callback, type ) {
  1455. /// <summary>
  1456. /// Loads a remote page using an HTTP POST request.
  1457. /// </summary>
  1458. /// <param name="url" type="String">The URL of the HTML page to load.</param>
  1459. /// <param name="data" optional="true" type="Map">Key/value pairs that will be sent to the server.</param>
  1460. /// <param name="callback" optional="true" type="Function">The function called when the AJAX request is complete.  It should map function(responseText, textStatus) such that this maps the options for this AJAX request.</param>
  1461. /// <param name="type" optional="true" type="String">Type of data to be returned to callback function.  Valid valiues are xml, html, script, json, text, _default.</param>
  1462. /// <returns type="XMLHttpRequest" />
  1463. if ( jQuery.isFunction( data ) ) {
  1464. callback = data;
  1465. data = {};
  1466. }
  1467. return jQuery.ajax({
  1468. type: "POST",
  1469. url: url,
  1470. data: data,
  1471. success: callback,
  1472. dataType: type
  1473. });
  1474. },
  1475. ajaxSetup: function( settings ) {
  1476. /// <summary>
  1477. /// Sets up global settings for AJAX requests.
  1478. /// </summary>
  1479. /// <param name="settings" type="Options">A set of key/value pairs that configure the default Ajax request.</param>
  1480. jQuery.extend( jQuery.ajaxSettings, settings );
  1481. },
  1482. ajaxSettings: {
  1483. url: location.href,
  1484. global: true,
  1485. type: "GET",
  1486. contentType: "application/x-www-form-urlencoded",
  1487. processData: true,
  1488. async: true,
  1489. /*
  1490. timeout: 0,
  1491. data: null,
  1492. username: null,
  1493. password: null,
  1494. */
  1495. // Create the request object; Microsoft failed to properly
  1496. // implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
  1497. // This function can be overriden by calling jQuery.ajaxSetup
  1498. xhr:function(){
  1499. return window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
  1500. },
  1501. accepts: {
  1502. xml: "application/xml, text/xml",
  1503. html: "text/html",
  1504. script: "text/javascript, application/javascript",
  1505. json: "application/json, text/javascript",
  1506. text: "text/plain",
  1507. _default: "*/*"
  1508. }
  1509. },
  1510. // Last-Modified header cache for next request
  1511. lastModified: {},
  1512. ajax: function( s ) {
  1513. /// <summary>
  1514. /// Load a remote page using an HTTP request.
  1515. /// </summary>
  1516. /// <private />
  1517. // Extend the settings, but re-extend 's' so that it can be
  1518. // checked again later (in the test suite, specifically)
  1519. s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s));
  1520. var jsonp, jsre = /=?(&|$)/g, status, data,
  1521. type = s.type.toUpperCase();
  1522. // convert data if not already a string
  1523. if ( s.data && s.processData && typeof s.data !== "string" )
  1524. s.data = jQuery.param(s.data);
  1525. // Handle JSONP Parameter Callbacks
  1526. if ( s.dataType == "jsonp" ) {
  1527. if ( type == "GET" ) {
  1528. if ( !s.url.match(jsre) )
  1529. s.url += (s.url.match(/?/) ? "&" : "?") + (s.jsonp || "callback") + "=?";
  1530. } else if ( !s.data || !s.data.match(jsre) )
  1531. s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
  1532. s.dataType = "json";
  1533. }
  1534. // Build temporary JSONP function
  1535. if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) {
  1536. jsonp = "jsonp" + jsc++;
  1537. // Replace the =? sequence both in the query string and the data
  1538. if ( s.data )
  1539. s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
  1540. s.url = s.url.replace(jsre, "=" + jsonp + "$1");
  1541. // We need to make sure
  1542. // that a JSONP style response is executed properly
  1543. s.dataType = "script";
  1544. // Handle JSONP-style loading
  1545. window[ jsonp ] = function(tmp){
  1546. data = tmp;
  1547. success();
  1548. complete();
  1549. // Garbage collect
  1550. window[ jsonp ] = undefined;
  1551. try{ delete window[ jsonp ]; } catch(e){}
  1552. if ( head )
  1553. head.removeChild( script );
  1554. };
  1555. }
  1556. if ( s.dataType == "script" && s.cache == null )
  1557. s.cache = false;
  1558. if ( s.cache === false && type == "GET" ) {
  1559. var ts = now();
  1560. // try replacing _= if it is there
  1561. var ret = s.url.replace(/(?|&)_=.*?(&|$)/, "$1_=" + ts + "$2");
  1562. // if nothing was replaced, add timestamp to the end
  1563. s.url = ret + ((ret == s.url) ? (s.url.match(/?/) ? "&" : "?") + "_=" + ts : "");
  1564. }
  1565. // If data is available, append data to url for get requests
  1566. if ( s.data && type == "GET" ) {
  1567. s.url += (s.url.match(/?/) ? "&" : "?") + s.data;
  1568. // IE likes to send both get and post data, prevent this
  1569. s.data = null;
  1570. }
  1571. // Watch for a new set of requests
  1572. if ( s.global && ! jQuery.active++ )
  1573. jQuery.event.trigger( "ajaxStart" );
  1574. // Matches an absolute URL, and saves the domain
  1575. var parts = /^(w+:)?//([^/?#]+)/.exec( s.url );
  1576. // If we're requesting a remote document
  1577. // and trying to load JSON or Script with a GET
  1578. if ( s.dataType == "script" && type == "GET" && parts
  1579. && ( parts[1] && parts[1] != location.protocol || parts[2] != location.host )){
  1580. var head = document.getElementsByTagName("head")[0];
  1581. var script = document.createElement("script");
  1582. script.src = s.url;
  1583. if (s.scriptCharset)
  1584. script.charset = s.scriptCharset;
  1585. // Handle Script loading
  1586. if ( !jsonp ) {
  1587. var done = false;
  1588. // Attach handlers for all browsers
  1589. script.onload = script.onreadystatechange = function(){
  1590. if ( !done && (!this.readyState ||
  1591. this.readyState == "loaded" || this.readyState == "complete") ) {
  1592. done = true;
  1593. success();
  1594. complete();
  1595. // Handle memory leak in IE
  1596. script.onload = script.onreadystatechange = null;
  1597. head.removeChild( script );
  1598. }
  1599. };
  1600. }
  1601. head.appendChild(script);
  1602. // We handle everything using the script element injection
  1603. return undefined;
  1604. }
  1605. var requestDone = false;
  1606. // Create the request object
  1607. var xhr = s.xhr();
  1608. // Open the socket
  1609. // Passing null username, generates a login popup on Opera (#2865)
  1610. if( s.username )
  1611. xhr.open(type, s.url, s.async, s.username, s.password);
  1612. else
  1613. xhr.open(type, s.url, s.async);
  1614. // Need an extra try/catch for cross domain requests in Firefox 3
  1615. try {
  1616. // Set the correct header, if data is being sent
  1617. if ( s.data )
  1618. xhr.setRequestHeader("Content-Type", s.contentType);
  1619. // Set the If-Modified-Since header, if ifModified mode.
  1620. if ( s.ifModified )
  1621. xhr.setRequestHeader("If-Modified-Since",
  1622. jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" );
  1623. // Set header so the called script knows that it's an XMLHttpRequest
  1624. xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
  1625. // Set the Accepts header for the server, depending on the dataType
  1626. xhr.setRequestHeader("Accept", s.dataType && s.accepts[ s.dataType ] ?
  1627. s.accepts[ s.dataType ] + ", */*" :
  1628. s.accepts._default );
  1629. } catch(e){}
  1630. // Allow custom headers/mimetypes and early abort
  1631. if ( s.beforeSend && s.beforeSend(xhr, s) === false ) {
  1632. // Handle the global AJAX counter
  1633. if ( s.global && ! --jQuery.active )
  1634. jQuery.event.trigger( "ajaxStop" );
  1635. // close opended socket
  1636. xhr.abort();
  1637. return false;
  1638. }
  1639. if ( s.global )
  1640. jQuery.event.trigger("ajaxSend", [xhr, s]);
  1641. // Wait for a response to come back
  1642. var onreadystatechange = function(isTimeout){
  1643. // The request was aborted, clear the interval and decrement jQuery.active
  1644. if (xhr.readyState == 0) {
  1645. if (ival) {
  1646. // clear poll interval
  1647. clearInterval(ival);
  1648. ival = null;
  1649. // Handle the global AJAX counter
  1650. if ( s.global && ! --jQuery.active )
  1651. jQuery.event.trigger( "ajaxStop" );
  1652. }
  1653. // The transfer is complete and the data is available, or the request timed out
  1654. } else if ( !requestDone && xhr && (xhr.readyState == 4 || isTimeout == "timeout") ) {
  1655. requestDone = true;
  1656. // clear poll interval
  1657. if (ival) {
  1658. clearInterval(ival);
  1659. ival = null;
  1660. }
  1661. status = isTimeout == "timeout" ? "timeout" :
  1662. !jQuery.httpSuccess( xhr ) ? "error" :
  1663. s.ifModified && jQuery.httpNotModified( xhr, s.url ) ? "notmodified" :
  1664. "success";
  1665. if ( status == "success" ) {
  1666. // Watch for, and catch, XML document parse errors
  1667. try {
  1668. // process the data (runs the xml through httpData regardless of callback)
  1669. data = jQuery.httpData( xhr, s.dataType, s );
  1670. } catch(e) {
  1671. status = "parsererror";
  1672. }
  1673. }
  1674. // Make sure that the request was successful or notmodified
  1675. if ( status == "success" ) {
  1676. // Cache Last-Modified header, if ifModified mode.
  1677. var modRes;
  1678. try {
  1679. modRes = xhr.getResponseHeader("Last-Modified");
  1680. } catch(e) {} // swallow exception thrown by FF if header is not available
  1681. if ( s.ifModified && modRes )
  1682. jQuery.lastModified[s.url] = modRes;
  1683. // JSONP handles its own success callback
  1684. if ( !jsonp )
  1685. success();
  1686. } else
  1687. jQuery.handleError(s, xhr, status);
  1688. // Fire the complete handlers
  1689. complete();
  1690. if ( isTimeout )
  1691. xhr.abort();
  1692. // Stop memory leaks
  1693. if ( s.async )
  1694. xhr = null;
  1695. }
  1696. };
  1697. if ( s.async ) {
  1698. // don't attach the handler to the request, just poll it instead
  1699. var ival = setInterval(onreadystatechange, 13);
  1700. // Timeout checker
  1701. if ( s.timeout > 0 )
  1702. setTimeout(function(){
  1703. // Check to see if the request is still happening
  1704. if ( xhr && !requestDone )
  1705. onreadystatechange( "timeout" );
  1706. }, s.timeout);
  1707. }
  1708. // Send the data
  1709. try {
  1710. xhr.send(s.data);
  1711. } catch(e) {
  1712. jQuery.handleError(s, xhr, null, e);
  1713. }
  1714. // firefox 1.5 doesn't fire statechange for sync requests
  1715. if ( !s.async )
  1716. onreadystatechange();
  1717. function success(){
  1718. // If a local callback was specified, fire it and pass it the data
  1719. if ( s.success )
  1720. s.success( data, status );
  1721. // Fire the global callback
  1722. if ( s.global )
  1723. jQuery.event.trigger( "ajaxSuccess", [xhr, s] );
  1724. }
  1725. function complete(){
  1726. // Process result
  1727. if ( s.complete )
  1728. s.complete(xhr, status);
  1729. // The request was completed
  1730. if ( s.global )
  1731. jQuery.event.trigger( "ajaxComplete", [xhr, s] );
  1732. // Handle the global AJAX counter
  1733. if ( s.global && ! --jQuery.active )
  1734. jQuery.event.trigger( "ajaxStop" );
  1735. }
  1736. // return XMLHttpRequest to allow aborting the request etc.
  1737. return xhr;
  1738. },
  1739. handleError: function( s, xhr, status, e ) {
  1740. /// <summary>
  1741. /// This method is internal.
  1742. /// </summary>
  1743. /// <private />
  1744. // If a local callback was specified, fire it
  1745. if ( s.error ) s.error( xhr, status, e );
  1746. // Fire the global callback
  1747. if ( s.global )
  1748. jQuery.event.trigger( "ajaxError", [xhr, s, e] );
  1749. },
  1750. // Counter for holding the number of active queries
  1751. active: 0,
  1752. // Determines if an XMLHttpRequest was successful or not
  1753. httpSuccess: function( xhr ) {
  1754. /// <summary>
  1755. /// This method is internal.
  1756. /// </summary>
  1757. /// <private />
  1758. try {
  1759. // IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
  1760. return !xhr.status && location.protocol == "file:" ||
  1761. ( xhr.status >= 200 && xhr.status < 300 ) || xhr.status == 304 || xhr.status == 1223;
  1762. } catch(e){}
  1763. return false;
  1764. },
  1765. // Determines if an XMLHttpRequest returns NotModified
  1766. httpNotModified: function( xhr, url ) {
  1767. /// <summary>
  1768. /// This method is internal.
  1769. /// </summary>
  1770. /// <private />
  1771. try {
  1772. var xhrRes = xhr.getResponseHeader("Last-Modified");
  1773. // Firefox always returns 200. check Last-Modified date
  1774. return xhr.status == 304 || xhrRes == jQuery.lastModified[url];
  1775. } catch(e){}
  1776. return false;
  1777. },
  1778. httpData: function( xhr, type, s ) {
  1779. /// <summary>
  1780. /// This method is internal.
  1781. /// </summary>
  1782. /// <private />
  1783. var ct = xhr.getResponseHeader("content-type"),
  1784. xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0,
  1785. data = xml ? xhr.responseXML : xhr.responseText;
  1786. if ( xml && data.documentElement.tagName == "parsererror" )
  1787. throw "parsererror";
  1788. // Allow a pre-filtering function to sanitize the response
  1789. // s != null is checked to keep backwards compatibility
  1790. if( s && s.dataFilter )
  1791. data = s.dataFilter( data, type );
  1792. // The filter can actually parse the response
  1793. if( typeof data === "string" ){
  1794. // If the type is "script", eval it in global context
  1795. if ( type == "script" )
  1796. jQuery.globalEval( data );
  1797. // Get the JavaScript object, if JSON is used.
  1798. if ( type == "json" )
  1799. data = window["eval"]("(" + data + ")");
  1800. }
  1801. return data;
  1802. },
  1803. // Serialize an array of form elements or a set of
  1804. // key/values into a query string
  1805. param: function( a ) {
  1806. /// <summary>
  1807. /// This method is internal.  Use serialize() instead.
  1808. /// </summary>
  1809. /// <param name="a" type="Map">A map of key/value pairs to serialize into a string.</param>'
  1810. /// <returns type="String" />
  1811. /// <private />
  1812. var s = [ ];
  1813. function add( key, value ){
  1814. s[ s.length ] = encodeURIComponent(key) + '=' + encodeURIComponent(value);
  1815. };
  1816. // If an array was passed in, assume that it is an array
  1817. // of form elements
  1818. if ( jQuery.isArray(a) || a.jquery )
  1819. // Serialize the form elements
  1820. jQuery.each( a, function(){
  1821. add( this.name, this.value );
  1822. });
  1823. // Otherwise, assume that it's an object of key/value pairs
  1824. else
  1825. // Serialize the key/values
  1826. for ( var j in a )
  1827. // If the value is an array then the key names need to be repeated
  1828. if ( jQuery.isArray(a[j]) )
  1829. jQuery.each( a[j], function(){
  1830. add( j, this );
  1831. });
  1832. else
  1833. add( j, jQuery.isFunction(a[j]) ? a[j]() : a[j] );
  1834. // Return the resulting serialization
  1835. return s.join("&").replace(/%20/g, "+");
  1836. }
  1837. });
  1838. var elemdisplay = {},
  1839. timerId,
  1840. fxAttrs = [
  1841. // height animations
  1842. [ "height", "marginTop", "marginBottom", "paddingTop", "paddingBottom" ],
  1843. // width animations
  1844. [ "width", "marginLeft", "marginRight", "paddingLeft", "paddingRight" ],
  1845. // opacity animations
  1846. [ "opacity" ]
  1847. ];
  1848. function genFx( type, num ){
  1849. var obj = {};
  1850. jQuery.each( fxAttrs.concat.apply([], fxAttrs.slice(0,num)), function(){
  1851. obj[ this ] = type;
  1852. });
  1853. return obj;
  1854. }
  1855. jQuery.fn.extend({
  1856. show: function(speed,callback){
  1857. /// <summary>
  1858. /// Show all matched elements using a graceful animation and firing an optional callback after completion.
  1859. /// </summary>
  1860. /// <param name="speed" type="String">A string representing one of three predefined speeds ('slow', 'normal', or 'fast'), or
  1861. /// the number of milliseconds to run the animation</param>
  1862. /// <param name="callback" optional="true" type="Function">A function to be executed whenever the animation completes, once for each animated element.  It should map function callback() such that this is the DOM element being animated.</param>
  1863. /// <returns type="jQuery" />
  1864. if ( speed ) {
  1865. return this.animate( genFx("show", 3), speed, callback);
  1866. } else {
  1867. for ( var i = 0, l = this.length; i < l; i++ ){
  1868. var old = jQuery.data(this[i], "olddisplay");
  1869. this[i].style.display = old || "";
  1870. if ( jQuery.css(this[i], "display") === "none" ) {
  1871. var tagName = this[i].tagName, display;
  1872. if ( elemdisplay[ tagName ] ) {
  1873. display = elemdisplay[ tagName ];
  1874. } else {
  1875. var elem = jQuery("<" + tagName + " />").appendTo("body");
  1876. display = elem.css("display");
  1877. if ( display === "none" )
  1878. display = "block";
  1879. elem.remove();
  1880. elemdisplay[ tagName ] = display;
  1881. }
  1882. jQuery.data(this[i], "olddisplay", display);
  1883. }
  1884. }
  1885. // Set the display of the elements in a second loop
  1886. // to avoid the constant reflow
  1887. for ( var i = 0, l = this.length; i < l; i++ ){
  1888. this[i].style.display = jQuery.data(this[i], "olddisplay") || "";
  1889. }
  1890. return this;
  1891. }
  1892. },
  1893. hide: function(speed,callback){
  1894. /// <summary>
  1895. /// Hides all matched elements using a graceful animation and firing an optional callback after completion.
  1896. /// </summary>
  1897. /// <param name="speed" type="String">A string representing one of three predefined speeds ('slow', 'normal', or 'fast'), or
  1898. /// the number of milliseconds to run the animation</param>
  1899. /// <param name="callback" optional="true" type="Function">A function to be executed whenever the animation completes, once for each animated element.  It should map function callback() such that this is the DOM element being animated.</param>
  1900. /// <returns type="jQuery" />
  1901. if ( speed ) {
  1902. return this.animate( genFx("hide", 3), speed, callback);
  1903. } else {
  1904. for ( var i = 0, l = this.length; i < l; i++ ){
  1905. var old = jQuery.data(this[i], "olddisplay");
  1906. if ( !old && old !== "none" )
  1907. jQuery.data(this[i], "olddisplay", jQuery.css(this[i], "display"));
  1908. }
  1909. // Set the display of the elements in a second loop
  1910. // to avoid the constant reflow
  1911. for ( var i = 0, l = this.length; i < l; i++ ){
  1912. this[i].style.display = "none";
  1913. }
  1914. return this;
  1915. }
  1916. },
  1917. // Save the old toggle function
  1918. _toggle: jQuery.fn.toggle,
  1919. toggle: function( fn, fn2 ){
  1920. /// <summary>
  1921. /// Toggles displaying each of the set of matched elements.
  1922. /// </summary>
  1923. /// <returns type="jQuery" />
  1924. var bool = typeof fn === "boolean";
  1925. return jQuery.isFunction(fn) && jQuery.isFunction(fn2) ?
  1926. this._toggle.apply( this, arguments ) :
  1927. fn == null || bool ?
  1928. this.each(function(){
  1929. var state = bool ? fn : jQuery(this).is(":hidden");
  1930. jQuery(this)[ state ? "show" : "hide" ]();
  1931. }) :
  1932. this.animate(genFx("toggle", 3), fn, fn2);
  1933. },
  1934. fadeTo: function(speed,to,callback){
  1935. /// <summary>
  1936. /// Fades the opacity of all matched elements to a specified opacity.
  1937. /// </summary>
  1938. /// <param name="speed" type="String">A string representing one of three predefined speeds ('slow', 'normal', or 'fast'), or
  1939. /// the number of milliseconds to run the animation</param>
  1940. /// <param name="callback" optional="true" type="Function">A function to be executed whenever the animation completes, once for each animated element.  It should map function callback() such that this is the DOM element being animated.</param>
  1941. /// <returns type="jQuery" />
  1942. return this.animate({opacity: to}, speed, callback);
  1943. },
  1944. animate: function( prop, speed, easing, callback ) {
  1945. /// <summary>
  1946. /// A function for making custom animations.
  1947. /// </summary>
  1948. /// <param name="prop" type="Options">A set of style attributes that you wish to animate and to what end.</param>
  1949. /// <param name="speed" optional="true" type="String">A string representing one of three predefined speeds ('slow', 'normal', or 'fast'), or
  1950. /// the number of milliseconds to run the animation</param>
  1951. /// <param name="easing" optional="true" type="String">The name of the easing effect that you want to use.  There are two built-in values, 'linear' and 'swing'.</param>
  1952. /// <param name="callback" optional="true" type="Function">A function to be executed whenever the animation completes, once for each animated element.  It should map function callback() such that this is the DOM element being animated.</param>
  1953. /// <returns type="jQuery" />
  1954. var optall = jQuery.speed(speed, easing, callback);
  1955. return this[ optall.queue === false ? "each" : "queue" ](function(){
  1956. var opt = jQuery.extend({}, optall), p,
  1957. hidden = this.nodeType == 1 && jQuery(this).is(":hidden"),
  1958. self = this;
  1959. for ( p in prop ) {
  1960. if ( prop[p] == "hide" && hidden || prop[p] == "show" && !hidden )
  1961. return opt.complete.call(this);
  1962. if ( ( p == "height" || p == "width" ) && this.style ) {
  1963. // Store display property
  1964. opt.display = jQuery.css(this, "display");
  1965. // Make sure that nothing sneaks out
  1966. opt.overflow = this.style.overflow;
  1967. }
  1968. }
  1969. if ( opt.overflow != null )
  1970. this.style.overflow = "hidden";
  1971. opt.curAnim = jQuery.extend({}, prop);
  1972. jQuery.each( prop, function(name, val){
  1973. var e = new jQuery.fx( self, opt, name );
  1974. if ( /toggle|show|hide/.test(val) )
  1975. e[ val == "toggle" ? hidden ? "show" : "hide" : val ]( prop );
  1976. else {
  1977. var parts = val.toString().match(/^([+-]=)?([d+-.]+)(.*)$/),
  1978. start = e.cur(true) || 0;
  1979. if ( parts ) {
  1980. var end = parseFloat(parts[2]),
  1981. unit = parts[3] || "px";
  1982. // We need to compute starting value
  1983. if ( unit != "px" ) {
  1984. self.style[ name ] = (end || 1) + unit;
  1985. start = ((end || 1) / e.cur(true)) * start;
  1986. self.style[ name ] = start + unit;
  1987. }
  1988. // If a +=/-= token was provided, we're doing a relative animation
  1989. if ( parts[1] )
  1990. end = ((parts[1] == "-=" ? -1 : 1) * end) + start;
  1991. e.custom( start, end, unit );
  1992. } else
  1993. e.custom( start, val, "" );
  1994. }
  1995. });
  1996. // For JS strict compliance
  1997. return true;
  1998. });
  1999. },
  2000. stop: function(clearQueue, gotoEnd){
  2001. /// <summary>
  2002. /// Stops all currently animations on the specified elements.
  2003. /// </summary>
  2004. /// <param name="clearQueue" optional="true" type="Boolean">True to clear animations that are queued to run.</param>
  2005. /// <param name="gotoEnd" optional="true" type="Boolean">True to move the element value to the end of its animation target.</param>
  2006. /// <returns type="jQuery" />
  2007. var timers = jQuery.timers;
  2008. if (clearQueue)
  2009. this.queue([]);
  2010. this.each(function(){
  2011. // go in reverse order so anything added to the queue during the loop is ignored
  2012. for ( var i = timers.length - 1; i >= 0; i-- )
  2013. if ( timers[i].elem == this ) {
  2014. if (gotoEnd)
  2015. // force the next step to be the last
  2016. timers[i](true);
  2017. timers.splice(i, 1);
  2018. }
  2019. });
  2020. // start the next in the queue if the last step wasn't forced
  2021. if (!gotoEnd)
  2022. this.dequeue();
  2023. return this;
  2024. }
  2025. });
  2026. // Generate shortcuts for custom animations
  2027. // jQuery.each({
  2028. //  slideDown: genFx("show", 1),
  2029. //  slideUp: genFx("hide", 1),
  2030. //  slideToggle: genFx("toggle", 1),
  2031. //  fadeIn: { opacity: "show" },
  2032. //  fadeOut: { opacity: "hide" }
  2033. // }, function( name, props ){
  2034. //  jQuery.fn[ name ] = function( speed, callback ){
  2035. //  return this.animate( props, speed, callback );
  2036. //  };
  2037. // });
  2038. // [vsdoc] The following section has been denormalized from original sources for IntelliSense.
  2039. jQuery.fn.slideDown = function( speed, callback ){
  2040. /// <summary>
  2041. /// Reveal all matched elements by adjusting their height.
  2042. /// </summary>
  2043. /// <param name="speed" type="String">A string representing one of three predefined speeds ('slow', 'normal', or 'fast'), or
  2044. /// the number of milliseconds to run the animation</param>
  2045. /// <param name="callback" optional="true" type="Function">A function to be executed whenever the animation completes, once for each animated element.  It should map function callback() such that this is the DOM element being animated.</param>
  2046. /// <returns type="jQuery" />
  2047. return this.animate( genFx("show", 1), speed, callback );
  2048. };
  2049. jQuery.fn.slideUp = function( speed, callback ){
  2050. /// <summary>
  2051. /// Hiding all matched elements by adjusting their height.
  2052. /// </summary>
  2053. /// <param name="speed" type="String">A string representing one of three predefined speeds ('slow', 'normal', or 'fast'), or
  2054. /// the number of milliseconds to run the animation</param>
  2055. /// <param name="callback" optional="true" type="Function">A function to be executed whenever the animation completes, once for each animated element.  It should map function callback() such that this is the DOM element being animated.</param>
  2056. /// <returns type="jQuery" />
  2057. return this.animate( genFx("hide", 1), speed, callback );
  2058. };
  2059. jQuery.fn.slideToggle = function( speed, callback ){
  2060. /// <summary>
  2061. /// Toggles the visibility of all matched elements by adjusting their height.
  2062. /// </summary>
  2063. /// <param name="speed" type="String">A string representing one of three predefined speeds ('slow', 'normal', or 'fast'), or
  2064. /// the number of milliseconds to run the animation</param>
  2065. /// <param name="callback" optional="true" type="Function">A function to be executed whenever the animation completes, once for each animated element.  It should map function callback() such that this is the DOM element being animated.</param>
  2066. /// <returns type="jQuery" />
  2067. return this.animate( genFx("toggle", 1), speed, callback );
  2068. };
  2069. jQuery.fn.fadeIn = function( speed, callback ){
  2070. /// <summary>
  2071. /// Fades in all matched elements by adjusting their opacity.
  2072. /// </summary>
  2073. /// <param name="speed" type="String">A string representing one of three predefined speeds ('slow', 'normal', or 'fast'), or
  2074. /// the number of milliseconds to run the animation</param>
  2075. /// <param name="callback" optional="true" type="Function">A function to be executed whenever the animation completes, once for each animated element.  It should map function callback() such that this is the DOM element being animated.</param>
  2076. /// <returns type="jQuery" />
  2077. return this.animate( { opacity: "show" }, speed, callback );
  2078. };
  2079. jQuery.fn.fadeOut = function( speed, callback ){
  2080. /// <summary>
  2081. /// Fades the opacity of all matched elements to a specified opacity.
  2082. /// </summary>
  2083. /// <param name="speed" type="String">A string representing one of three predefined speeds ('slow', 'normal', or 'fast'), or
  2084. /// the number of milliseconds to run the animation</param>
  2085. /// <param name="callback" optional="true" type="Function">A function to be executed whenever the animation completes, once for each animated element.  It should map function callback() such that this is the DOM element being animated.</param>
  2086. /// <returns type="jQuery" />
  2087. return this.animate( { opacity: "hide" }, speed, callback );
  2088. };
  2089. jQuery.extend({
  2090. speed: function(speed, easing, fn) {
  2091. /// <summary>
  2092. /// This member is internal.
  2093. /// </summary>
  2094. /// <private />
  2095. var opt = typeof speed === "object" ? speed : {
  2096. complete: fn || !fn && easing ||
  2097. jQuery.isFunction( speed ) && speed,
  2098. duration: speed,
  2099. easing: fn && easing || easing && !jQuery.isFunction(easing) && easing
  2100. };
  2101. opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
  2102. jQuery.fx.speeds[opt.duration] || jQuery.fx.speeds._default;
  2103. // Queueing
  2104. opt.old = opt.complete;
  2105. opt.complete = function(){
  2106. if ( opt.queue !== false )
  2107. jQuery(this).dequeue();
  2108. if ( jQuery.isFunction( opt.old ) )
  2109. opt.old.call( this );
  2110. };
  2111. return opt;
  2112. },
  2113. easing: {
  2114. linear: function( p, n, firstNum, diff ) {
  2115.     /// <summary>
  2116.     /// This member is internal.
  2117. /// </summary>
  2118.     /// <private />
  2119. return firstNum + diff * p;
  2120. },
  2121. swing: function( p, n, firstNum, diff ) {
  2122.     /// <summary>
  2123.     /// This member is internal.
  2124. /// </summary>
  2125.     /// <private />
  2126. return ((-Math.cos(p*Math.PI)/2) + 0.5) * diff + firstNum;
  2127. }
  2128. },
  2129. timers: [],
  2130. fx: function( elem, options, prop ){
  2131. /// <summary>
  2132. /// This member is internal.
  2133. /// </summary>
  2134. /// <private />
  2135. this.options = options;
  2136. this.elem = elem;
  2137. this.prop = prop;
  2138. if ( !options.orig )
  2139. options.orig = {};
  2140. }
  2141. });
  2142. jQuery.fx.prototype = {
  2143. // Simple function for setting a style value
  2144. update: function(){
  2145. /// <summary>
  2146. /// This member is internal.
  2147. /// </summary>
  2148. /// <private />
  2149. if ( this.options.step )
  2150. this.options.step.call( this.elem, this.now, this );
  2151. (jQuery.fx.step[this.prop] || jQuery.fx.step._default)( this );
  2152. // Set display property to block for height/width animations
  2153. if ( ( this.prop == "height" || this.prop == "width" ) && this.elem.style )
  2154. this.elem.style.display = "block";
  2155. },
  2156. // Get the current size
  2157. cur: function(force){
  2158. /// <summary>
  2159. /// This member is internal.
  2160. /// </summary>
  2161. /// <private />
  2162. if ( this.elem[this.prop] != null && (!this.elem.style || this.elem.style[this.prop] == null) )
  2163. return this.elem[ this.prop ];
  2164. var r = parseFloat(jQuery.css(this.elem, this.prop, force));
  2165. return r && r > -10000 ? r : parseFloat(jQuery.curCSS(this.elem, this.prop)) || 0;
  2166. },
  2167. // Start an animation from one number to another
  2168. custom: function(from, to, unit){
  2169. this.startTime = now();
  2170. this.start = from;
  2171. this.end = to;
  2172. this.unit = unit || this.unit || "px";
  2173. this.now = this.start;
  2174. this.pos = this.state = 0;
  2175. var self = this;
  2176. function t(gotoEnd){
  2177. return self.step(gotoEnd);
  2178. }
  2179. t.elem = this.elem;
  2180. if ( t() && jQuery.timers.push(t) && !timerId ) {
  2181. timerId = setInterval(function(){
  2182. var timers = jQuery.timers;
  2183. for ( var i = 0; i < timers.length; i++ )
  2184. if ( !timers[i]() )
  2185. timers.splice(i--, 1);
  2186. if ( !timers.length ) {
  2187. clearInterval( timerId );
  2188. timerId = undefined;
  2189. }
  2190. }, 13);
  2191. }
  2192. },
  2193. // Simple 'show' function
  2194. show: function(){
  2195. /// <summary>
  2196. /// Displays each of the set of matched elements if they are hidden.
  2197. /// </summary>
  2198. // Remember where we started, so that we can go back to it later
  2199. this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
  2200. this.options.show = true;
  2201. // Begin the animation
  2202. // Make sure that we start at a small width/height to avoid any
  2203. // flash of content
  2204. this.custom(this.prop == "width" || this.prop == "height" ? 1 : 0, this.cur());
  2205. // Start by showing the element
  2206. jQuery(this.elem).show();
  2207. },
  2208. // Simple 'hide' function
  2209. hide: function(){
  2210. /// <summary>
  2211. /// Hides each of the set of matched elements if they are shown.
  2212. /// </summary>
  2213. // Remember where we started, so that we can go back to it later
  2214. this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
  2215. this.options.hide = true;
  2216. // Begin the animation
  2217. this.custom(this.cur(), 0);
  2218. },
  2219. // Each step of an animation
  2220. step: function(gotoEnd){
  2221. /// <summary>
  2222. /// This method is internal.
  2223. /// </summary>
  2224. /// <private />
  2225. var t = now();
  2226. if ( gotoEnd || t >= this.options.duration + this.startTime ) {
  2227. this.now = this.end;
  2228. this.pos = this.state = 1;
  2229. this.update();
  2230. this.options.curAnim[ this.prop ] = true;
  2231. var done = true;
  2232. for ( var i in this.options.curAnim )
  2233. if ( this.options.curAnim[i] !== true )
  2234. done = false;
  2235. if ( done ) {
  2236. if ( this.options.display != null ) {
  2237. // Reset the overflow
  2238. this.elem.style.overflow = this.options.overflow;
  2239. // Reset the display
  2240. this.elem.style.display = this.options.display;
  2241. if ( jQuery.css(this.elem, "display") == "none" )
  2242. this.elem.style.display = "block";
  2243. }
  2244. // Hide the element if the "hide" operation was done
  2245. if ( this.options.hide )
  2246. jQuery(this.elem).hide();
  2247. // Reset the properties, if the item has been hidden or shown
  2248. if ( this.options.hide || this.options.show )
  2249. for ( var p in this.options.curAnim )
  2250. jQuery.attr(this.elem.style, p, this.options.orig[p]);
  2251. // Execute the complete function
  2252. this.options.complete.call( this.elem );
  2253. }
  2254. return false;
  2255. } else {
  2256. var n = t - this.startTime;
  2257. this.state = n / this.options.duration;
  2258. // Perform the easing function, defaults to swing
  2259. this.pos = jQuery.easing[this.options.easing || (jQuery.easing.swing ? "swing" : "linear")](this.state, n, 0, 1, this.options.duration);
  2260. this.now = this.start + ((this.end - this.start) * this.pos);
  2261. // Perform the next step of the animation
  2262. this.update();
  2263. }
  2264. return true;
  2265. }
  2266. };
  2267. jQuery.extend( jQuery.fx, {
  2268. speeds:{
  2269. slow: 600,
  2270.   fast: 200,
  2271.   // Default speed
  2272.   _default: 400
  2273. },
  2274. step: {
  2275. opacity: function(fx){
  2276. jQuery.attr(fx.elem.style, "opacity", fx.now);
  2277. },
  2278. _default: function(fx){
  2279. if ( fx.elem.style && fx.elem.style[ fx.prop ] != null )
  2280. fx.elem.style[ fx.prop ] = fx.now + fx.unit;
  2281. else
  2282. fx.elem[ fx.prop ] = fx.now;
  2283. }
  2284. }
  2285. });
  2286. if ( document.documentElement["getBoundingClientRect"] )
  2287. jQuery.fn.offset = function() {
  2288. /// <summary>
  2289. /// Gets the current offset of the first matched element relative to the viewport.
  2290. /// </summary>
  2291. /// <returns type="Object">An object with two Integer properties, 'top' and 'left'.</returns>
  2292. if ( !this[0] ) return { top: 0, left: 0 };
  2293. if ( this[0] === this[0].ownerDocument.body ) return jQuery.offset.bodyOffset( this[0] );
  2294. var box  = this[0].getBoundingClientRect(), doc = this[0].ownerDocument, body = doc.body, docElem = doc.documentElement,
  2295. clientTop = docElem.clientTop || body.clientTop || 0, clientLeft = docElem.clientLeft || body.clientLeft || 0,
  2296. top  = box.top  + (self.pageYOffset || jQuery.boxModel && docElem.scrollTop  || body.scrollTop ) - clientTop,
  2297. left = box.left + (self.pageXOffset || jQuery.boxModel && docElem.scrollLeft || body.scrollLeft) - clientLeft;
  2298. return { top: top, left: left };
  2299. };
  2300. else 
  2301. jQuery.fn.offset = function() {
  2302. /// <summary>
  2303. /// Gets the current offset of the first matched element relative to the viewport.
  2304. /// </summary>
  2305. /// <returns type="Object">An object with two Integer properties, 'top' and 'left'.</returns>
  2306. if ( !this[0] ) return { top: 0, left: 0 };
  2307. if ( this[0] === this[0].ownerDocument.body ) return jQuery.offset.bodyOffset( this[0] );
  2308. jQuery.offset.initialized || jQuery.offset.initialize();
  2309. var elem = this[0], offsetParent = elem.offsetParent, prevOffsetParent = elem,
  2310. doc = elem.ownerDocument, computedStyle, docElem = doc.documentElement,
  2311. body = doc.body, defaultView = doc.defaultView,
  2312. prevComputedStyle = defaultView.getComputedStyle(elem, null),
  2313. top = elem.offsetTop, left = elem.offsetLeft;
  2314. while ( (elem = elem.parentNode) && elem !== body && elem !== docElem ) {
  2315. computedStyle = defaultView.getComputedStyle(elem, null);
  2316. top -= elem.scrollTop, left -= elem.scrollLeft;
  2317. if ( elem === offsetParent ) {
  2318. top += elem.offsetTop, left += elem.offsetLeft;
  2319. if ( jQuery.offset.doesNotAddBorder && !(jQuery.offset.doesAddBorderForTableAndCells && /^t(able|d|h)$/i.test(elem.tagName)) )
  2320. top  += parseInt( computedStyle.borderTopWidth,  10) || 0,
  2321. left += parseInt( computedStyle.borderLeftWidth, 10) || 0;
  2322. prevOffsetParent = offsetParent, offsetParent = elem.offsetParent;
  2323. }
  2324. if ( jQuery.offset.subtractsBorderForOverflowNotVisible && computedStyle.overflow !== "visible" )
  2325. top  += parseInt( computedStyle.borderTopWidth,  10) || 0,
  2326. left += parseInt( computedStyle.borderLeftWidth, 10) || 0;
  2327. prevComputedStyle = computedStyle;
  2328. }
  2329. if ( prevComputedStyle.position === "relative" || prevComputedStyle.position === "static" )
  2330. top  += body.offsetTop,
  2331. left += body.offsetLeft;
  2332. if ( prevComputedStyle.position === "fixed" )
  2333. top  += Math.max(docElem.scrollTop, body.scrollTop),
  2334. left += Math.max(docElem.scrollLeft, body.scrollLeft);
  2335. return { top: top, left: left };
  2336. };
  2337. jQuery.offset = {
  2338. initialize: function() {
  2339. if ( this.initialized ) return;
  2340. var body = document.body, container = document.createElement('div'), innerDiv, checkDiv, table, td, rules, prop, bodyMarginTop = body.style.marginTop,
  2341. html = '<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"cellpadding="0"cellspacing="0"><tr><td></td></tr></table>';
  2342. rules = { position: 'absolute', top: 0, left: 0, margin: 0, border: 0, width: '1px', height: '1px', visibility: 'hidden' };
  2343. for ( prop in rules ) container.style[prop] = rules[prop];
  2344. container.innerHTML = html;
  2345. body.insertBefore(container, body.firstChild);
  2346. innerDiv = container.firstChild, checkDiv = innerDiv.firstChild, td = innerDiv.nextSibling.firstChild.firstChild;
  2347. this.doesNotAddBorder = (checkDiv.offsetTop !== 5);
  2348. this.doesAddBorderForTableAndCells = (td.offsetTop === 5);
  2349. innerDiv.style.overflow = 'hidden', innerDiv.style.position = 'relative';
  2350. this.subtractsBorderForOverflowNotVisible = (checkDiv.offsetTop === -5);
  2351. body.style.marginTop = '1px';
  2352. this.doesNotIncludeMarginInBodyOffset = (body.offsetTop === 0);
  2353. body.style.marginTop = bodyMarginTop;
  2354. body.removeChild(container);
  2355. this.initialized = true;
  2356. },
  2357. bodyOffset: function(body) {
  2358. jQuery.offset.initialized || jQuery.offset.initialize();
  2359. var top = body.offsetTop, left = body.offsetLeft;
  2360. if ( jQuery.offset.doesNotIncludeMarginInBodyOffset )
  2361. top  += parseInt( jQuery.curCSS(body, 'marginTop',  true), 10 ) || 0,
  2362. left += parseInt( jQuery.curCSS(body, 'marginLeft', true), 10 ) || 0;
  2363. return { top: top, left: left };
  2364. }
  2365. };
  2366. jQuery.fn.extend({
  2367. position: function() {
  2368. /// <summary>
  2369. /// Gets the top and left positions of an element relative to its offset parent.
  2370. /// </summary>
  2371. /// <returns type="Object">An object with two integer properties, 'top' and 'left'.</returns>
  2372. var left = 0, top = 0, results;
  2373. if ( this[0] ) {
  2374. // Get *real* offsetParent
  2375. var offsetParent = this.offsetParent(),
  2376. // Get correct offsets
  2377. offset       = this.offset(),
  2378. parentOffset = /^body|html$/i.test(offsetParent[0].tagName) ? { top: 0, left: 0 } : offsetParent.offset();
  2379. // Subtract element margins
  2380. // note: when an element has margin: auto the offsetLeft and marginLeft 
  2381. // are the same in Safari causing offset.left to incorrectly be 0
  2382. offset.top  -= num( this, 'marginTop'  );
  2383. offset.left -= num( this, 'marginLeft' );
  2384. // Add offsetParent borders
  2385. parentOffset.top  += num( offsetParent, 'borderTopWidth'  );
  2386. parentOffset.left += num( offsetParent, 'borderLeftWidth' );
  2387. // Subtract the two offsets
  2388. results = {
  2389. top:  offset.top  - parentOffset.top,
  2390. left: offset.left - parentOffset.left
  2391. };
  2392. }
  2393. return results;
  2394. },
  2395. offsetParent: function() {
  2396. /// <summary>
  2397. /// This method is internal.
  2398. /// </summary>
  2399. /// <private />
  2400. var offsetParent = this[0].offsetParent || document.body;
  2401. while ( offsetParent && (!/^body|html$/i.test(offsetParent.tagName) && jQuery.css(offsetParent, 'position') == 'static') )
  2402. offsetParent = offsetParent.offsetParent;
  2403. return jQuery(offsetParent);
  2404. }
  2405. });
  2406. // Create scrollLeft and scrollTop methods
  2407. jQuery.each( ['Left'], function(i, name) {
  2408. var method = 'scroll' + name;
  2409. jQuery.fn[ method ] = function(val) {
  2410. /// <summary>
  2411. /// Gets and optionally sets the scroll left offset of the first matched element.
  2412. /// </summary>
  2413. /// <param name="val" type="Number" integer="true" optional="true">A positive number representing the desired scroll left offset.</param>
  2414. /// <returns type="Number" integer="true">The scroll left offset of the first matched element.</returns>
  2415. if (!this[0]) return null;
  2416. return val !== undefined ?
  2417. // Set the scroll offset
  2418. this.each(function() {
  2419. this == window || this == document ?
  2420. window.scrollTo(
  2421. !i ? val : jQuery(window).scrollLeft(),
  2422.  i ? val : jQuery(window).scrollTop()
  2423. ) :
  2424. this[ method ] = val;
  2425. }) :
  2426. // Return the scroll offset
  2427. this[0] == window || this[0] == document ?
  2428. self[ i ? 'pageYOffset' : 'pageXOffset' ] ||
  2429. jQuery.boxModel && document.documentElement[ method ] ||
  2430. document.body[ method ] :
  2431. this[0][ method ];
  2432. };
  2433. });
  2434. // Create scrollLeft and scrollTop methods
  2435. jQuery.each( ['Top'], function(i, name) {
  2436. var method = 'scroll' + name;
  2437. jQuery.fn[ method ] = function(val) {
  2438. /// <summary>
  2439. /// Gets and optionally sets the scroll top offset of the first matched element.
  2440. /// </summary>
  2441. /// <param name="val" type="Number" integer="true" optional="true">A positive number representing the desired scroll top offset.</param>
  2442. /// <returns type="Number" integer="true">The scroll top offset of the first matched element.</returns>
  2443. if (!this[0]) return null;
  2444. return val !== undefined ?
  2445. // Set the scroll offset
  2446. this.each(function() {
  2447. this == window || this == document ?
  2448. window.scrollTo(
  2449. !i ? val : jQuery(window).scrollLeft(),
  2450.  i ? val : jQuery(window).scrollTop()
  2451. ) :
  2452. this[ method ] = val;
  2453. }) :
  2454. // Return the scroll offset
  2455. this[0] == window || this[0] == document ?
  2456. self[ i ? 'pageYOffset' : 'pageXOffset' ] ||
  2457. jQuery.boxModel && document.documentElement[ method ] ||
  2458. document.body[ method ] :
  2459. this[0][ method ];
  2460. };
  2461. });
  2462. // Create innerHeight, innerWidth, outerHeight and outerWidth methods
  2463. jQuery.each([ "Height" ], function(i, name){
  2464. var tl = i ? "Left"  : "Top",  // top or left
  2465. br = i ? "Right" : "Bottom", // bottom or right
  2466. lower = name.toLowerCase();
  2467. // innerHeight and innerWidth
  2468. jQuery.fn["inner" + name] = function(){
  2469. /// <summary>
  2470. /// Gets the inner height of the first matched element, excluding border but including padding.
  2471. /// </summary>
  2472. /// <returns type="Number" integer="true">The outer height of the first matched element.</returns>
  2473. return this[0] ?
  2474. jQuery.css( this[0], lower, false, "padding" ) :
  2475. null;
  2476. };
  2477. // outerHeight and outerWidth
  2478. jQuery.fn["outer" + name] = function(margin) {
  2479. /// <summary>
  2480. /// Gets the outer height of the first matched element, including border and padding by default.
  2481. /// </summary>
  2482. /// <param name="margins" type="Map">A set of key/value pairs that specify the options for the method.</param>
  2483. /// <returns type="Number" integer="true">The outer height of the first matched element.</returns>
  2484. return this[0] ?
  2485. jQuery.css( this[0], lower, false, margin ? "margin" : "border" ) :
  2486. null;
  2487. };
  2488. var type = name.toLowerCase();
  2489. jQuery.fn[ type ] = function( size ) {
  2490. /// <summary>
  2491. /// Set the CSS height of every matched element. If no explicit unit
  2492. /// was specified (like 'em' or '%') then &quot;px&quot; is added to the width.  If no parameter is specified, it gets
  2493. /// the current computed pixel height of the first matched element.
  2494. /// Part of CSS
  2495. /// </summary>
  2496. /// <returns type="jQuery" type="jQuery" />
  2497. /// <param name="cssProperty" type="String">
  2498. /// Set the CSS property to the specified value. Omit to get the value of the first matched element.
  2499. /// </param>
  2500. // Get window width or height
  2501. return this[0] == window ?
  2502. // Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
  2503. document.compatMode == "CSS1Compat" && document.documentElement[ "client" + name ] ||
  2504. document.body[ "client" + name ] :
  2505. // Get document width or height
  2506. this[0] == document ?
  2507. // Either scroll[Width/Height] or offset[Width/Height], whichever is greater
  2508. Math.max(
  2509. document.documentElement["client" + name],
  2510. document.body["scroll" + name], document.documentElement["scroll" + name],
  2511. document.body["offset" + name], document.documentElement["offset" + name]
  2512. ) :
  2513. // Get or set width or height on the element
  2514. size === undefined ?
  2515. // Get width or height on the element
  2516. (this.length ? jQuery.css( this[0], type ) : null) :
  2517. // Set the width or height on the element (default to pixels if value is unitless)
  2518. this.css( type, typeof size === "string" ? size : size + "px" );
  2519. };
  2520. });
  2521. // Create innerHeight, innerWidth, outerHeight and outerWidth methods
  2522. jQuery.each([ "Width" ], function(i, name){
  2523. var tl = i ? "Left"  : "Top",  // top or left
  2524. br = i ? "Right" : "Bottom", // bottom or right
  2525. lower = name.toLowerCase();
  2526. // innerHeight and innerWidth
  2527. jQuery.fn["inner" + name] = function(){
  2528. /// <summary>
  2529. /// Gets the inner width of the first matched element, excluding border but including padding.
  2530. /// </summary>
  2531. /// <returns type="Number" integer="true">The outer width of the first matched element.</returns>
  2532. return this[0] ?
  2533. jQuery.css( this[0], lower, false, "padding" ) :
  2534. null;
  2535. };
  2536. // outerHeight and outerWidth
  2537. jQuery.fn["outer" + name] = function(margin) {
  2538. /// <summary>
  2539. /// Gets the outer width of the first matched element, including border and padding by default.
  2540. /// </summary>
  2541. /// <param name="margins" type="Map">A set of key/value pairs that specify the options for the method.</param>
  2542. /// <returns type="Number" integer="true">The outer width of the first matched element.</returns>
  2543. return this[0] ?
  2544. jQuery.css( this[0], lower, false, margin ? "margin" : "border" ) :
  2545. null;
  2546. };
  2547. var type = name.toLowerCase();
  2548. jQuery.fn[ type ] = function( size ) {
  2549. /// <summary>
  2550. /// Set the CSS width of every matched element. If no explicit unit
  2551. /// was specified (like 'em' or '%') then &quot;px&quot; is added to the width.  If no parameter is specified, it gets
  2552. /// the current computed pixel width of the first matched element.
  2553. /// Part of CSS
  2554. /// </summary>
  2555. /// <returns type="jQuery" type="jQuery" />
  2556. /// <param name="cssProperty" type="String">
  2557. /// Set the CSS property to the specified value. Omit to get the value of the first matched element.
  2558. /// </param>
  2559. // Get window width or height
  2560. return this[0] == window ?
  2561. // Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
  2562. document.compatMode == "CSS1Compat" && document.documentElement[ "client" + name ] ||
  2563. document.body[ "client" + name ] :
  2564. // Get document width or height
  2565. this[0] == document ?
  2566. // Either scroll[Width/Height] or offset[Width/Height], whichever is greater
  2567. Math.max(
  2568. document.documentElement["client" + name],
  2569. document.body["scroll" + name], document.documentElement["scroll" + name],
  2570. document.body["offset" + name], document.documentElement["offset" + name]
  2571. ) :
  2572. // Get or set width or height on the element
  2573. size === undefined ?
  2574. // Get width or height on the element
  2575. (this.length ? jQuery.css( this[0], type ) : null) :
  2576. // Set the width or height on the element (default to pixels if value is unitless)
  2577. this.css( type, typeof size === "string" ? size : size + "px" );
  2578. };
  2579. });
  2580. })();