In the URL
http://docs.kendoui.com/getting-started/introduction
under the section "Kendo UI Mobile" there is a code that if you copy and paste it does not work.
"Here is the complete example:"
<script>
var app = new kendo.mobile.Applilcation();
</script>
I changed that code for
<script>
var app = new kendo.mobile.Application(document.body);
</script>
and it worked.
http://docs.kendoui.com/getting-started/introduction
under the section "Kendo UI Mobile" there is a code that if you copy and paste it does not work.
"Here is the complete example:"
<script>
var app = new kendo.mobile.Applilcation();
</script>
I changed that code for
<script>
var app = new kendo.mobile.Application(document.body);
</script>
and it worked.