I would like to get the arrows for the carousel appearing and disappearing when hovering on the slideshow. I have tried this but not much success:
$("#slideshow").hover(function(){$('.control').fadeOut(500);$('control').fadeIn(500);});
Thanks
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.
I think you’re using the wrong syntax for
hover()for what you want to do. The hover() method takes two callbacks, one for the onmouseover event (hover), and one for the onmouseout event (off hover).