[jQuery] Re: Can't get JQuery to work, Pls Help

2009-05-22 Thread ryan.j
1. basically you weren't linking to the jquery library correctly - either the file wasn't in the location specified in the link or the filename/folder structure was incorrect. linking to the google APIs version of jquery just means you don't need to worry about the location of the file for now. th

[jQuery] Re: Can't get JQuery to work, Pls Help

2009-05-20 Thread Kerry
Hey thanks! That works perfectly! You are truly heaven sent!! 1)But I'm confused, why should i have to link to google(specified in the src), as jquery.com provides the jquery-1.3.2.min.js download, which you are supposed to link in your webpage? As really what i'll be interested in using later on

[jQuery] Re: Can't get JQuery to work, Pls Help

2009-05-20 Thread ryan.j
try... $(function() { $("a").click(function () { $("#box").fadeOut(); }); }); also, you're not linking the jquery lib sucessfully. replace ... ... with ... http://ajax.googleapis.com/ajax/ libs/jquery/1.3.1/j

[jQuery] Re: Can't get JQuery to work, Pls Help

2009-05-20 Thread ryan.j
your anchor doesn't have a class of "box". you don't really want to get classes and IDs muddles up either, IDs should be unique on a page, classes can be applied to multiple elements. On May 20, 11:23 am, Kerry wrote: > Hi I'm new to Jquery and trying a simple example before I start > working w