JSFiddle - React, Tailwind, and code Playground
HTML
<div id="mydiv" style="overflow-x:auto;overflow-y:hidden;width: 50px;height:50px;"> Put some data here so that we have horizontal scrollbar</div>
JavaScript
console.log($('#mydiv').attr('style'));
$('#mydiv').slideUp().slideDown(function () {
console.log($(this).attr('style'));
});