JSFiddle

Storm's public fiddles

  • Debug Show jQuery selections with .alert()

    .alert() can be chained in with your code to list the elements in the selection at that point.

  • textbox max min

    Allows only certain numbers to be typed into text boxes of class maxmin. Attributes max, min, and intOnly = "true/false" are set in the tag. Works best with min = 0 or min = 1. If you set min to 5, you won't be able to type in 23 because after you type in the 2, the result will be less than 5 and not be allowed. Works by recording value before key is pressed and if value fails test after key is pressed then it restores the saved value.