1
vote
Determine whether browser allows focus on radios/checkboxes
One approach is to try to set the focus and then detect if it was successful. Do this by assigning an onfocus event that set a variable to true, try to focus it and then check if the variable is tr …
29
votes
What’s the difference between hit “F5” and “Ctrl + F5” in browser?
It is up to the browser but they behave in similar ways.
I have tested FF, IE7, Opera and Chrome.
F5 usually updates the page only if it is modified. The browser usually tries to us …
1
vote
Why are cookie paths case sensitive?
If the path is case sensitive or insensitive is up to the web server. Traditionally unix-like OS:s IS case sensitive while MS aren't and that might be reflected in the webservers that are developed …
1
vote
Is there a limit to the number of Javascript objects you can have on the go at any one time?
An improved version of the script at link text. This is faster since it uses join, and lets the browser have …
