Using Javascript to change the sub properties of HTML tag's style property
Remove/Reset a sub property of style property
<div id="panel" style="overflow: hidden; display: block; "></div>
var htmlElement = document.getElementById("panel");
// Method (1): Not cross browsers
htmlElement.style.overflow = null;
// Method (2): Cross browsers
htmlElement.style.overflow = "";