I was confused how to get php made Array() value in Jquery. Please Help some one.
My Array Structure is:
Var data = Array ( [0] => Array ( [id] => 11 [date] => 2016-04-26 13:37:16 [member_id] => 46 [quantity] => 1 [costper_litre] => 40 [total_amount] => 40 [paid_amount] => 30 [balance_amount] => 10 [entry_date] => 26-04-2016 ) );
I was using to get value in jquery like this:
<script>
var account_id = data['entry_date'];
alert(account_id);
</script>
Error Giveing Undefined.