this is my code on jsFiddle, when I try doing
$('#featuredStores').fadeOut(1000)
it works, but .fadeIn() doesn’t work, Similarly when I use .slideUp() it works, but doesn’t work when I use .slideDown()
what’s the issue here?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Basically
slideDown()shows the image. Considering your image is already shown when the DOM is rendered, there is nothing to slide down to. If you set the style asdisplay:nonethen useslideDown(), it’ll work.