| javascript Programming Glossary: math.maxHow to get height of entire document with JavaScript? http://stackoverflow.com/questions/1145850/how-to-get-height-of-entire-document-with-javascript  document.body html document.documentElement var height Math.max body.scrollHeight body.offsetHeight  html.clientHeight html.scrollHeight.. 
 Check if Daylight Saving Time is in effect, and if it is for how many hours http://stackoverflow.com/questions/11887934/check-if-daylight-saving-time-is-in-effect-and-if-it-is-for-how-many-hours  0 1 var jul new Date this.getFullYear 6 1 return Math.max jan.getTimezoneOffset jul.getTimezoneOffset Date.prototype.dst.. 
 Best way to find an item in a JavaScript array? [duplicate] http://stackoverflow.com/questions/143847/best-way-to-find-an-item-in-a-javascript-array  n 0 1 Math.floor Math.abs n if n len return 1 var k n 0 n Math.max len Math.abs n 0 for k len k  if k in t t k searchElement return.. fromIndex null fromIndex 0 else if fromIndex 0 fromIndex Math.max 0 this.length fromIndex for var i fromIndex j this.length i.. 
 JavaScript: min & max Array values? http://stackoverflow.com/questions/1669190/javascript-min-max-array-values    How about augmenting the built in Array object to use Math.max Math.min instead Array.prototype.max function return Math.max.apply.. Math.min instead Array.prototype.max function return Math.max.apply null this Array.prototype.min function return Math.min.apply.. 
 jQuery animate backgroundColor http://stackoverflow.com/questions/190560/jquery-animate-backgroundcolor  g.elem e g.end b g.end g.colorInit true g.elem.style e rgb Math.max Math.min parseInt g.pos g.end 0 g.start 0 g.start 0 255 0 Math.max.. Math.min parseInt g.pos g.end 0 g.start 0 g.start 0 255 0 Math.max Math.min parseInt g.pos g.end 1 g.start 1 g.start 1 255 0 Math.max.. Math.min parseInt g.pos g.end 1 g.start 1 g.start 1 255 0 Math.max Math.min parseInt g.pos g.end 2 g.start 2 g.start 2 255 0 .join.. 
 Turn a number into star rating display using jQuery and CSS http://stackoverflow.com/questions/1987524/turn-a-number-into-star-rating-display-using-jquery-and-css  the value is in 0 5 range multiply to get width var size Math.max 0 Math.min 5 val 16 Create stars holder var span ' span ' .width.. return this .each function this .html ' span ' .width Math.max 0 Math.min 5 parseFloat this .html 16    share improve this.. 
 How can I combine objects in the Raphael javascript library? http://stackoverflow.com/questions/3679436/how-can-i-combine-objects-in-the-raphael-javascript-library  x1 p res 0 .x y1 p res 0 .y x4 p res 1 .x y4 p res 1 .y dx Math.max Math.abs x1 x4 2 10 dy Math.max Math.abs y1 y4 2 10 var x2 x1.. res 1 .x y4 p res 1 .y dx Math.max Math.abs x1 x4 2 10 dy Math.max Math.abs y1 y4 2 10 var x2 x1 x1 x1 dx x1 dx res 0 .toFixed.. 
 jquery ui drag easing/inertia http://stackoverflow.com/questions/4443526/jquery-ui-drag-easing-inertia  e.pageY t2 e.timeStamp  Deltas var dX x2 x1  dY y2 y1  dMs Math.max t2 t1 1  Speeds var speedX Math.max Math.min dX dMs 1 1  speedY.. x2 x1  dY y2 y1  dMs Math.max t2 t1 1  Speeds var speedX Math.max Math.min dX dMs 1 1  speedY Math.max Math.min dY dMs 1 1  Distance.. 1  Speeds var speedX Math.max Math.min dX dMs 1 1  speedY Math.max Math.min dY dMs 1 1  Distance moved Euclidean distance var distance.. 
 Creating a textarea with auto-resize http://stackoverflow.com/questions/454202/creating-a-textarea-with-auto-resize  if maxHeight maxHeight adjustedHeight adjustedHeight Math.max text.scrollHeight adjustedHeight if maxHeight adjustedHeight.. 
 jQGrid Column Chooser Modal Overlay http://stackoverflow.com/questions/9687201/jqgrid-column-chooser-modal-overlay  perm i v  if i 0  var a perm.slice  var b a.splice i Math.max perm.length i i  if i perm.length i perm.length  a i v  return.. containerHeight  selectedList.height Math.max containerHeight selectedActions.outerHeight 1 1  availableList.height.. selectedActions.outerHeight 1 1  availableList.height Math.max containerHeight availableActions.outerHeight 1 1   opts.dialog_opts.. 
 |