How can I update the value of a data element attribute ?
This is my HTML:
<a href="" data-action="add-to-cart">Add</a>
This is my JS:
$('a[data-action="add-to-cart"], a[data-action="remove-from-cart"]').click(function(e) {
e.preventDefault();
if($(this).data('action') == 'add-to-cart') {
$(this).data('action', 'remove-from-cart');
}
else {
$(this).data('action', 'add-to-cart');
}
});
Thanks.