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
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
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
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
4 matches
Mail list logo