$(function(){
$("a").each(function(){
var _this = $(this);
...
JavaScript Rewrite amazon URL's with J...
function deinterleave(base4_arr)
{
var x='',y='',rc;
...
JavaScript De-interleaving bits
by acmesquares.myopenid.com,
January 01, 2011 12:08,
2 refactorings, tagged with speed, javascript, interleave, bitwise
Function takes an array of ...
;(function($) {
$.fn.extend(
...
JavaScript filter selectbox with 3000+...
This is a little jQuery scr...
function state_classes(updateall) {
var value = display.value * 1, tempcolor;
for (var i = 1; i <= 118; i++) {
...
JavaScript Color elements by state of ...
Logic is cheap and DOM is e...
$.fn.textNodes = function() {
var ret = [];
this.each( function() {
...
JavaScript [jQuery] All descendent tex...
This function returns a jQu...
function calc_color(value, start, end, min, max) {
var n = (value - min) / (max - min);
var s = parseInt(start.replace("#", ""), 16);
...
JavaScript Hex color between two colors
Watch out for edge cases, l...
#Functions [javscript] var ms = 0; var state = 0; ...
JavaScript Stop Watch
by richardhealy,
October 27, 2007 13:31,
3 refactorings, tagged with time, clock, speed, test, javascript
I use this to test speed of...
I use this with dotjs to re...