29
votes
How does a javascript closure work ?
Whenever you see the function keyword within another function, the inner function has access to variables in the outer function.
function foo(x) {
var tmp = 3;
function bar(y) { …
1
vote
Is it reasonable to assume my visitors have javascript enabled?
Never ever assume Javascript for form validation, as your question implies. Someone will eventually realise this and turn Javascript off.
Instead, code the app in fairly regular html manner …
