Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Getting jQuery to work Re: Getting jQuery to work

#127636
pillaw
Member

So I added your new code and it still seemed not to work.

This is the jQuery code I am using. I don’t think I linked it correctly.. Do I have to link the jQuery page to my HTML one and do something else? All I have done is linked my jQuery page to my HTML page.

Here is my jQuery code:
$(document).ready(function() {
$(‘.test’).click(function() {
$(this).fadeOut(‘fast’)
});
});