i got a external view - linked with <a href="page2.html"> from my main page. In this view is a tag which i want to bind a variable. How do i know when the view is loaded, so i can bind my variable?
Is this using Kendo Mobile or is it a desktop site? If it's non-Kendo Mobile site you will be loading an entirely new page, which means you can use the jQuery document ready function as a place to bind your new document to a Kendo model.
If you are in Kendo Mobile then there is a built-in method to do this. In your new mobile view (which would be inpage2.html) you can add an attribute 'data-init'. This attribute specifies a javascript method to call when the view has been loaded.