If my PHP returns a array with 6 elements how would I access each of them specifically in jquery?
For example I want to create:
var itemOne = value of first array element; var itemTwo = value of second array element; ...
$.get('ajax/employee_menu.php', { job: $('#job').val() },
function(data)
{
//i want to put each value from 'data' into variables here.
});