I have written jquery code to show description if I hover on a hyperlink. But I donot know how to control the speed of the hover, so that i can show the description slowly.Can anyone please suggest me how to do this.
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.
You can use
.fadeIn()/.fadeOut()or.animate({ opacity: 'toggle' }), for example:You can give it a try here, or the shorter
.animate()version:You can try that here, in the code above you can add a duration as the next parameter to any of these, without it the default is 400ms.