@James Thinking about what you are doing here with the third dropdown...By attaching that dropdown to the second you are telling it to be filtered by the second dropdown's selected value...which is not selected yet since it just loaded so I would presume you shouldn't have any data in the third drop down. To support this behavior in the past I used the 'event' property of the options to define which event actually fires a cascade ( the defalt is 'changed'). Then I manually fire cascade within the parent element's change handler. : //when 'make' is selected... $(".seconddropdown") .cascade(".firstdropdown",{ ajax: 'firsturl.js' }) .bind("change",function() { $(this).trigger("custom.changed");//manually call cascade });
$(".thirddropdown") .cascade(".secondbehavior",{ event : "custom.changed",//bind to custom event to prevent loading from cascade ajax: 'secondurl.js', }); On Jan 31, 4:39 pm, James <james.tilb...@gmail.com> wrote: > I am new to JQuery and your cascading dropdown was exactly what I was > looking for. After formatting my data in JSON I have tested out the > Chained example (http://dev.chayachronicles.com/jquery/cascade/ > index.html) and it ONLY WORKS in Firefox and NOT IE. > > I am attempting to load the data from two external files, while your > example loads the second data set from a static var. > > Is there a further step necessary to get this to work in IE? > > I have my working example at:http://jamestilberg.com/jquery/ > > Any help would be appreciated! :)