I have a few lines of code:
var url = \'http://api.spitcast.com/api/spot/forecast/1/\';
var url_wind = \'http://api.spitcast.com/api/county/wind/orange-count
You'll need two calls, but you can use $.when to tie them to the same done() handler :
var url = 'http://api.spitcast.com/api/spot/forecast/1/';
var url_wind = 'http://api.spitcast.com/api/county/wind/orange-county/';
$.when(
$.getJSON(url),
$.getJSON(url_wind)
).done(function(result1, result2) {
});