Skip to content

Instantly share code, notes, and snippets.

@nmanousos
nmanousos / gist:4549391
Last active December 11, 2015 04:59
Radiance quick-add
<script>
$(function() {
$('.product-grid-item').append('<a href="/cart" style="margin-top:5px;" class="btn quick-add">Add to Cart</a>')
$('.quick-add').click(function(e){
e.preventDefault();
var quick_add_item = this
if($(quick_add_item).text() == 'View cart') {
window.location = $(quick_add_item).attr('href')
} else {
var quick_add_id = $(this).parent().attr('id').split('product-').join('')