Sha256: e3e342178b1757ce0bc89c6c101425e031ae48155a9dfe223bd96047ba7a3af8
Contents?: true
Size: 358 Bytes
Versions: 15
Compression:
Stored size: 358 Bytes
Contents
(function($){ $(document).ready(function(){ // Remove an item from the cart by setting its quantity to zero and posting the update form $('form#updatecart a.delete').show().click(function(){ $(this).parents('tr').find('input.line_item_quantity').val(0); $(this).parents('form').submit(); return false; }); }); })(jQuery);
Version data entries
15 entries across 15 versions & 2 rubygems