| javascript Programming Glossary: this.dataHow to disable tooltip in the browser with jQuery? http://stackoverflow.com/questions/1027762/how-to-disable-tooltip-in-the-browser-with-jquery  .ready function ' title ' .mouseover function this this this.data 'title' this.attr 'title' Using null here wouldn't work in IE.. 
 JavaScript detect an AJAX event http://stackoverflow.com/questions/3596583/javascript-detect-an-ajax-event  requested script including query string if any urlencoded this.data the data sent if any ex foo bar a b urlencoded XMLHttpRequest.prototype.open.. 
 jQuery click / toggle between two functions http://stackoverflow.com/questions/4911577/jquery-click-toggle-between-two-functions  .fn.clickToggle function func1 func2 var funcs func1 func2 this.data 'toggleclicked' 0 this.click function  var data this .data .. 
 jQuery plugin template - best practice, convention, performance and memory impact http://stackoverflow.com/questions/5980194/jquery-plugin-template-best-practice-convention-performance-and-memory-impac  HTMLElement element  this. elem element this.elem element this.data this.getData Shorthand accessors to data entries this.id this.data.id.. this.getData Shorthand accessors to data entries this.id this.data.id this.options this.data.options  Initialises the plugin. Internal.prototype.init.. to data entries this.id this.data.id this.options this.data.options  Initialises the plugin. Internal.prototype.init function.. 
 Mimicking sets in JavaScript? http://stackoverflow.com/questions/7958292/mimicking-sets-in-javascript  initialData can pass initial data for the set in an object this.data initialData set.prototype add function key val if typeof key.. key.hasOwnProperty index  this.add index key index    else this.data key val  get function key return this.data key remove function.. index    else this.data key val  get function key return this.data key remove function key can be one or more args each arg can.. 
 |