5
votes
What is a javascript hash table implementation that avoids object namespace collisions?
You might be "asking the wrong question" (as Raymond Chen would say); rather than trying to avoid using the vanilla objects, try changing the way the associative array members are named.
Th …
5
votes
What are some excellent examples of user sign-up forms on the web?
One of my all-time fave sign-up forms was the original Vox one, which has since been changed; there was …
2
votes
What’s a good book to learn Javascript DOM manipulation?
Unsurprisingly, I love DOM Scripting, by Jeremy Keith.
…
0
votes
adding form elements with javascript - they won’t submit
Your HTML is munged, so it's hard to know exactly what's going on, but I'm fairly certain the answer is that you're adding the elements as straight HTML, not as DOM objects.
In other words, …
