{ regions: [ { text: "NorthEast", value: "http://www.damnralph.com/northeast", sections: [ { text: "New York", value: "http://www.damnralph.com/newyork" }, { text: "Boston", value: "http://www.damnralph.com/boston" } ] }, { text: "South East", value: "http://www.damnralph.com/southeast", sections: [ { text: "Orlando", value: "http://www.damnralph.com/southeast" } ] } ] }
$(document).ready(function(){ $.getJSON("sections.js",function(json){ $.each(json.regions, function(i,ritem){ $("#select_dropdown").append("<option value=" + ritem.value + ">" + ritem.text + "</option>"); $.each(ritem.sections, function(i,sitem){ $("#select_dropdown").append("<option value=" + sitem.value + ">--" + sitem.text + "</option>"); }); }); }); });
Remember Me
a@href@title, b, blockquote@cite, em, i, strike, strong, sub, super, u