0
votes
JavaScript to scroll long page to DIV
If you don't want to add an extra extension the following code should work with jQuery.
$('a[href=#target]').
click(function(){
var target = $('a[name=target]');
…
0
votes
JavaScript: closing window from iframe
It looks like this guy got cross domain JavaScript working between iframes.
…
3
votes
Drawing on top of an image in Javascript
Even though you said you'd like to avoid it I'd suggest Flash. You could easily use Flash 6 or 7 and these have a > 90% adoption rate. I'd be surprised if you could get that level of support with J …
