I'm on SP2010 and our company uses IE8 as our standard browser. I can't get cascading dropdowns to work in IE8, but the following code works for me in Firefox 10.0.3. Any ideas why I can't get this working in IE8?
<script language="javascript" type="text/javascript" src="/sites/canberra/JS/jquery.SPServices-2014.01.min.js"></script>
<script language="javascript" type="text/javascript"> $(document).ready(function() { // Change the orientation of the Lead Source options from vertical to horizontal $().SPServices.SPArrangeChoices({ columnName: "Lead Source", perRow: 3 }); // Change the orientation of the Color options from vertical to horizontal $().SPServices.SPArrangeChoices({ columnName: "Color", perRow: 3 }); // Set up the cascade from Region to State $().SPServices.SPCascadeDropdowns({ listName: "Cascading Dropdowns", relationshipList: "States", relationshipListParentColumn: "Region", relationshipListChildColumn: "Title", relationshipListSortColumn: "Title", parentColumn: "Region", childColumn: "State", debug: true }); }); </script>
Thanks.
<script language="javascript" type="text/javascript" src="/sites/canberra/JS/jquery-1.11.0.js"></script><script language="javascript" type="text/javascript" src="/sites/canberra/JS/jquery.SPServices-2014.01.min.js"></script>
<script language="javascript" type="text/javascript"> $(document).ready(function() { // Change the orientation of the Lead Source options from vertical to horizontal $().SPServices.SPArrangeChoices({ columnName: "Lead Source", perRow: 3 }); // Change the orientation of the Color options from vertical to horizontal $().SPServices.SPArrangeChoices({ columnName: "Color", perRow: 3 }); // Set up the cascade from Region to State $().SPServices.SPCascadeDropdowns({ listName: "Cascading Dropdowns", relationshipList: "States", relationshipListParentColumn: "Region", relationshipListChildColumn: "Title", relationshipListSortColumn: "Title", parentColumn: "Region", childColumn: "State", debug: true }); }); </script>