How do I remove the hidden class? In order to show the ribbon?
Html
<div id="alwaysInStockRibbon" class="ribbon-wrapper-productpage hidden">
Css
.hidden {
display: none!important;
visibility: hidden!important;
I've tried these below without success.
Jquery
$(".hidden").remove();
$(".hidden").removeClass();
https://api.jquery.com/remove/
https://api.jquery.com/removeClass/
Input?