I have the following code snip and am trying to debug it. Is there a way to get the full url string that the .getJSON call is calling?
opts = {};
opts['start'] = startdate;
opts['end'] = enddate;
opts['email'] = addresses;
$.getJSON(url_count_string, opts, function(data){
drawChart(data, chartsData['hourChart']);
});