[jQuery] Re: Hello world example - works in IE6; fails in firefox 3

2009-02-23 Thread Adelle Hartley
I wrote: Hi all, Any idea why this works in ie6 but not firefox? $(document).ready(function() { $("a").click(function() { alert("Hello world!"); }); }); Link Mystery solved: the html file was saved as UTF-16. Firefox didn't like it. Adelle.

[jQuery] Hello world example - works in IE6; fails in firefox 3

2009-02-23 Thread Adelle Hartley
Hi all, Any idea why this works in ie6 but not firefox? $(document).ready(function() { $("a").click(function() { alert("Hello world!"); }); }); Link