5
votes
6answers
496 views
Why can I use a function before it’s defined in Javascript?
This code always work, and across browsers.
function fooCheck(){
alert(internalFoo());
return internalFoo();
function internalFoo(){ return true; }
}
fooCheck();
…
0
votes
1answer
103 views
How can I know if an DOM element is currently on screen using jQuery.
Is there a function, or plugin, that tells me if more than 50% of a <div> block is currently being displayed?
I know there are things like $.offset() but I d …
3
votes
Syntax highlighting code with Javascript
If you're using jQuery there's Chilli:
http://code.google.com/p/jquery-chili-js/
All you have to do is include …
