Skip to content

Instantly share code, notes, and snippets.

@maheshruparel
Forked from rolandinsh/gist:4548975
Created July 25, 2013 06:31
Show Gist options
  • Save maheshruparel/6077350 to your computer and use it in GitHub Desktop.
Save maheshruparel/6077350 to your computer and use it in GitHub Desktop.
<!--
source: http://wordpress.stackexchange.com/a/53516/7577
-->
<a id="buy" href="#">Buy this!</a>
<script>
$('#buy').click(function(e) {
e.preventDefault();
addToCart(19);
return false;
});
function addToCart(p_id) {
$.get('/wp/?post_type=product&add-to-cart=' + p_id, function() {
// call back
});
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment