[jQuery] Re: jQuery script not working.

2007-09-10 Thread Wizzud
It's better if you download jquery into your own space and load it from there, rather than retrieving it from jquery.com. Within the script tags you need to wrap the jquery code inside a ready function so that it doesn't get run until the DOM is ready and scripts have loaded. So try ... jQuery

[jQuery] Re: jQuery script not working.

2007-09-09 Thread Karl Swedberg
Hi Shishir, If you're including the script in the of the page or from a separate file, you'll need to wrap the code in $(document).ready -- or one of the shorthands for it, like so: $(document).ready(function() { $("a").click(function(){ $(this).hide("slow"); return false;