I have a synchronization problem when trying to shift my extra info div. My desired functionality is that the Div slide show is on top as soon as the page has already been displayed. My problem is that if I use $ (document) .ready (), the animation is not noticeable.
Here is my code:
$(document).ready(function() { $(".MoreInfo").slideDown('slow'); });
If I attach it to some other element, for example, it works beautifully. But I'm not sure how to make it slide down noticeably as soon as the page loads. Thanks!
jquery onload pageload slidedown
bulltorious
source share