//general product addon to the cart

/** lock status*/
var locked = false;

/**
* onLoad init
* @param msg
*/
$(document).ready(function() {
	updateOrderedProductsList(); 
});

/**
* Update ordered products table
*/
function updateOrderedProductsList()
{
	$.ajax(
	{
		url:site_path + 'products/add_basket.php',
		type:'post', 
		dataType:'json',
		success:onSuccessUpdateList
	});
}

/**
* Remove all rows with td in the table
* @param string identifier of the tbody or table tag to be cleared
*/
function clearTableContent(element_id)
{
	$('#'+element_id).html('');
}



