1(function( $ ) {
2var ajaxscript = { ajax_url : 'yourdomain.com/wp-admin/admin-ajax.php' }
3$.ajax({
4 url : ajaxscript.ajax_url,
5 data : {
6 action : 'post_cart_clb',
7 id : 1
8 },
9 method : 'POST', //Post method
10 success : function( response ){ console.log(response) },
11 error : function(error){ console.log(error) }
12 })
13})(jQuery)
14