Is there a way to hide a dynamically generated class in a table row? I am trying to figure out how to hide this dynamic class that appears on the table row. In other words, I need to hide a row in the table that includes this dynamic class. Even when I add a rule to set display:none;
in the CSS files, it still remains visible. I have tried using jQuery as shown below:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type='text/javascript'>
$(document).ready(function(){
$(".dos").hide();
});
</script>
However, the row is still visible. Please refer to the screenshot http://prntscr.com/eyl1h9 The website can be found here: . To replicate the issue, add items to the cart, proceed to checkout, sign in as a customer, fill in the billing details, click continue, then select shipping. The order confirmation page will display all the details. Any solutions for this would be greatly appreciated.