JSFiddle - React, Tailwind, and code Playground

HTML

<div><b>Click this!</b> This should not blink visibly as it changes the opacity to 99% and then back to 100%. But it does blink on Linux Chrome 6.0.472.63 with all versions of jQuery available here up to 1.4.4 (with exception of jQuery 1.3.2 where this code does not seem to work at all)</div>

CSS

div { background: red; padding: 10px; }

JavaScript

$('div').click(function() { 
  $(this)
      .fadeTo(10, 0.99)
      .fadeTo(1000, 1);
});