Pratik
Pratik

Reputation: 19

Jquery animation mouse cursor not and style not changed after click

I am using JQuery animation ,I am facing issue on chrome.

As per requirement I need to animate the div on click of a link.

when cursor moved hover link, link should be underlined and cursor should show as pointer but even after clicking on link even after animation if user not moved mouse mouse pointer not get changed and link also shows underlined. if users moves mouse it works fine.

fiddle :https://jsfiddle.net/pratiknvyas/wsaqfcxj/

Where on other browsers it works fine.

Upvotes: 0

Views: 289

Answers (1)

vatavale
vatavale

Reputation: 1620

You can add .hide().show(0) for animate element for compensate Chrome bug.

Please, take a look at feedle.

Related:
How can I force WebKit to redraw/repaint to propagate style changes?
Force DOM redraw/refresh on Chrome/Mac

Upvotes: 0

Related Questions