I have an ecommerce site that, every time someone clicks on "Add to Pallet" (we call it a pallet instead of a cart) the page refreshes to the same page and positions itself to the div of that product (try it out here: http://www.boostliquidation.com/). This happens using this Javascript:

 $('input.returnLink').each(function(){
     $(this).attr('value',window.location.href + $(this).attr('data-skuhash'));
     }); 

And this anchor tag which is placed in a hidden input tag before the "Add to Cart" button:

<input type="hidden" value="back" name="return_to" class='returnLink' data-skuhash='#{%     for variant in product.variants %}{{variant.sku}}{% endfor %}' /> 

(The code in the {% %} is a language called Liquid used with Shopify websites).

This works fine... but only on the first product. It adds the SKU number preceded by a # in the address bar. If a user adds another product, it refreshes to the top of the page, because it amends the SKU number to the existing SKU number already showing in the address bar.

How can I get the products added after the first to replace the existing SKU with their own so they'll refresh back to the product and not back to the top of the page?

link|improve this question

25% accept rate
1  
Instead of using $(this).attr("value", a value), you should try using $(this).val(a value) – Phil Dec 30 '11 at 18:24
feedback

1 Answer

up vote 0 down vote accepted

I'd probably try to use the string.replace()

var str = window.location.href;
var hash = $(this).attr('data-skuhash');

if (str.match('#\w\w+'){
   str.replace('#\w\w+', hash);
} else {
    str = str + hash;
}

Looks for any hashes on the end of the url, replaces if it finds one, adds one if it doesn't.

link|improve this answer
Thanks so much tedski! Works perfectly... – kennyk3 Dec 30 '11 at 19:44
I was using jGrowl to make a message pop up in the top right corner letting them know something was added to their cart. This no longer works. Here's the code: if(window.location.hash.length > 0){ var prodName = window.location.hash.replace('#',''); $('.productmsg').html('<span style="color: red;">Item Was Added to Your Pallet.</span> <a href="http://www.boostliquidation.com/cart">View Pallet >></a> '); $.jGrowl('<strong>Item Was Added to Your Pallet. <h3><a href="http://www.boostliquidation.com/cart">View Pallet >></a></h3></strong>'); } – kennyk3 Dec 30 '11 at 20:32
That's weird, I took a look at the site and I can't figure out why it would break the jGrowl notifications. I know this is a different suggestion altogether, but have you tried using an AJAX call so the page doesn't refresh? This way the user would always see what they just looked at. You could call the jGrowl notification after the AJAX method succeeds – tedski Dec 30 '11 at 21:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.