3
votes
Turn off caching for JavaScript files on Firefox
Have you tried to use CTRL-F5 to update the page?
…
3
votes
Firefox Javascript Events Anonymous Function
IMHO closures should not be used in this case and there is no need to create a new function for each onlick (uses much more memory than necessary) and eval is the wrong answer.
You know tha …
3
votes
Fastest javascript page search
I could not find hasItem, setItem or getItem in prototypes Hash like tvanfosson suggested, but used set and get and wrote a hasItem based on get. But profiling showed that it is slower to use proto …
0
votes
Margin not acting properly in Firefox
#main-navigation {
clear:both;
display:block;
margin:0 -10px 48px;
position:relative;
}
You have 3 values in the margin above. It is supposed to work, but …
