No, and that's the weird thing. Without modifying the script at all it works just fine in FireFox, but not IE. When I filter a different lookup, a smaller one, it also works just fine. But when I filter the complex dropdown (the list is now at about 80 items), it just doesn't do anything. With debug on I don't get any notifications, and to make sure debug is working I intentionally mistyped some things and then retyped them correctly.
I'm using two scripts at the same time, calling the second one on the first one's completion? FireFox handled it fine, but maybe IE8 can't...
For reference, here's my script:
<script type="text/javascript" language="javascript" src=".../Scripts/jquery-1.8.0.min.js"></script> <script type="text/javascript" language="javascript" src=".../Scripts/jquery.SPServices-0.7.1a.min.js"></script> <script type="text/javascript" language="javascript"> $(document).ready(function() { $().SPServices.SPLookupAddNew({ lookupColumn: "Facility", promptText: "If you can't find the Facility you are looking for, click here to add a new {0}", newWindow: false, }); $().SPServices.SPCascadeDropdowns({ relationshipList:"Facilities", relationshipListParentColumn:"Asset", relationshipListChildColumn:"Title", parentColumn:"Asset", childColumn:"Facility" }); }); </script>