My environement is SP2013
I am unable to run below code under Content Editor WebPart loaded below EditForm.aspx page for one of my test list. Please assist the spot of my error. Yes, both of my js files are in Style Library of my site. I am not getting alert message. seems SP.JS is not loaded or not found.
These scripts are loaded in the content editor window
<script src="/sites/documentit/Style%20Library/jquery-1.10.1.min.js" type="text/javascript"> </script>
<script src="/_layouts/SP.js" type="text/javascript"> </script>
And this script is failing to execute
$(document).ready(function(){
SP.SOD.executeOrDelayUntilScriptLoaded(function(){
alert("jquery");
} , "SP.js");
});