I am relatively new to working with JQuery and currently attempting to implement a feature where a div at the bottom of the page fades in upon loading, and then fades out as the user starts to scroll down. The div should reappear when scrolling back to the top.
However, the code I have written to fade the div in is not functioning as expected. You can view the code snippet here: http://jsfiddle.net/DeZnT/
Below is the jQuery code I am utilizing:
$(document).ready(function () {
$(function(){
$(".other_product_links").animate({bottom:'0px'});
});
});
I appreciate any help or guidance you can provide. Thank you for taking the time to assist me.