I have a jQuery function that is supposed to slide the page to a particular place, but it won't go.
This is it:
As you can see it's supposed to slide to the first h1 in the section with the class of col2. Do animations not work on <section>'s? Is there something wrong with my function?
This is it:
Code:
$(document).ready(function(){
$(".col2 h1:first").slideDown("slow");
});
Comment