Home › Forums › Other › Getting jQuery to work › Re: Getting jQuery to work
March 9, 2013 at 9:56 pm
#127636
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’)
});
});