There is a specific element that has been given a class with the following CSS styling:
.cls {
display:none !important;
}
Despite attempting to display this element using jQuery
$(".cls").show();
This method does not seem to be effective.
Is there an alternative way to display this particular element?