I need to avoid html table flickering on mouse hover. when someone hover a row it shows a button, but the table seems a litlle bit weird.
Here is my code
http://jsfiddle.net/7nqLg/2/
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.
Use
mouseenterandmouseleaveinstead.And instead of hiding the element set its visibility to
hiddenand on mouse over make itvisible, this will avoid the flickering because the div occupies some space when you show it. Making its visibility hidden will still occupy the space but won’t be displayed.Demo