Why is window.kendo undefined in jsfiddle -
h there,
i have created jsfiddle. have linked following external resources:
http://getfirebug.com/firebug-lite-debug.js http://cdn.kendostatic.com/2013.1.319/js/kendo.all.min.js http://cdn.kendostatic.com/2013.1.319/styles/kendo.common.min.css http://cdn.kendostatic.com/2013.1.319/styles/kendo.default.min.css http://cdn.kendostatic.com/2013.1.319/js/jquery.min.js
and have following markup:
<div id="test">test</div>
and have following javascript:
alert($("#test").html()); alert(window.kendo.guid());
the first alert returns 'test' expected. second alert fails.
i have tested kendo js external resources in address bar of browser , both load. why window.kendo undefined?
regards,
scott
apparently order of external resources. when changed them following order, worked fine:
http://cdn.kendostatic.com/2013.1.319/js/jquery.min.js http://cdn.kendostatic.com/2013.1.319/js/kendo.all.min.js http://cdn.kendostatic.com/2013.1.319/styles/kendo.default.min.css http://cdn.kendostatic.com/2013.1.319/styles/kendo.common.min.css http://getfirebug.com/firebug-lite-debug.js
regards,
scott
Comments
Post a Comment