I was able to solve the above problem using JQuery
<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>
It makes the AJAX GET request to the cart URL
/wp/?post_type=product&add-to-cart=[PRODUCT_ID]
Thanks