Tag Archives: JavaScript
URI Decomposer
At work, we build our client websites upon a framework uses a lot of GET parameters. It makes for some URIs that average, oh, about three feet in length. Examining some of those monsters can make your eyes cross if you ever need to … Continue reading
Don’t Let A Spec Pick Your Button Type
Ever need to create a <button> of type button when you’re doing a little DOM scripting? Easy enough, right? It should go something like this: var okButton = document.createElement(‘button’); okButton.type = ‘button’; Nevertheless when you run this code in IE6, … Continue reading