I'm needing some scope help. Below is my code (simplified). Within a function within the success event of an ajax call within buildDropdownOptions... (mouthful).
I'm attempting to set something in a settings object that's at the same level as buildDropdownOptions, yet I'm unable to access it (maybe because of the ajax call?).
Does anyone know how to get this thing to work?
If you have any additional questions, I'll reply ASAP. Thanks, everyone :).
var settings = {},
buildDropdownOptions = function () {
var success = function (clinics, settings) {
var dropdownOptions = [];
$.each(clinics, function (i, clinic) {
dropdownOptions.push('<option value="' + clinic.ClinicId + '">' + clinic.Name + '</option>');
});
settings.dropdown.options = dropdownOptions;
};
$.ajax({
'url': settings.dropdown.source,
'success': function (clinics, settings) {
success(clinics);
}
});
};