I'm running puro icotheme for Magento and I would really love to trigger the cart preview (available on mouseover on the header) right after a customer click add to cart on the product page.. This is my code but the console gives the Unexpected Token error
<button type="button" title="<?php echo $this->__('Add to cart');?>"
data-button="<i class='fs1' aria-hidden='true' data-icon=''></i><span><?php echo $buttonTitle ?></span>" class="btn-cart"
onclick="productAddToCartForm.submit(this); document.getElementsByClassName("icon-cart-header")[1].click()">
I tried both onmouseover() and click()...
Thanks everyone!