$(document).on('click','.to_basket', function() {
// ...
$.post( "/wp-admin/admin-ajax.php", { action: 'to_basket', post_id: post_id, size: size })
.done(function( data ) {
// ...
});
});
add_action( 'wp_ajax_to_basket', 'to_basket' );
function to_basket() {
// ...
wp_die();
}