Reputation: 171
How do I target a class based on its name:
<input type="submit" name="addtocart" class="addtocart-button" value="Add to Cart" title="Add to Cart">
$("[name="addtocart]").removeClass('addtocart-button');
This is what I thought how to do it, but doesnt work.
Upvotes: -1
Views: 42
Reputation: 3561
You can use this
$("input[name=addtocart]").removeClass('addtocart-button');
It should work.
Upvotes: 1