Okay so I added the alert lines to the code but nothing happens. I'm assuming I should be getting these alerts pop up when I open a new item?
So for some reason, the page is not detecting the CEWP or the link within it? I tried removing the Link in the Web part and just adding the code to the HTML option in the ribbon but nothing again.... I downloaded your SPServices scripts again just in case something went wrong the first time.
So for some reason, the page is not detecting the CEWP or the link within it? I tried removing the Link in the Web part and just adding the code to the HTML option in the ribbon but nothing again.... I downloaded your SPServices scripts again just in case something went wrong the first time.
<script language="javascript" type="text/javascript" src="/depts/testing/Shared%20Documents/jquery-1.10.2.min.js"></script>
<script language="javascript" type="text/javascript" src="/depts/testing/Shared%20Documents/jquery.SPServices-2013.01.min.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function() {
alert ("testing alert");
alert($().SPServices.SPGetCurrentSite());
$().SPServices.SPCascadeDropdowns({
relationshipList: "Countries",
relationshipListParentColumn: "Continent",
relationshipListChildColumn: "Country",
parentColumn: "Continent",
childColumn: "Country"
debug: true
});
});
</script>