function calculate_price()
{
$( "#calculate_price" ).load( 'http://localhost:8888/live/calculate_price', { product_type: $( "#product_type" ).val() ,
qty: $( "#qty" ).val(), size: $( "#size" ).val(), category: $( "#category" ).val(), p_type: $( "#p_type" ).val() , item_id: $( "#item_id" ).val() } );
}That all works fine and sweet. The problem is that I have another array that I need to pass to but I can't used the same id for all the checkboxes that exist in this array.
<input name="profile[]" value="1" type="checkbox">
<input name="profile[]" value="2" type="checkbox">
How can I pass the list of selected check boxes as well? Maybe using name "profile"?
Please advise. Thanks