ludo.$(<id>);

ludo.$ is the most important function to remember in ludoJS. It is a function which quickly gets you access to everything you create in ludoJS which has an id.

new ludo.View({
    id:'myView',
    children:[
        {
            id:'myOtherView'
        }
    ]
});

This view be accessed from everywhere using

ludo.$('myView');

Example:

ludo.$('myView').html('New HTML');
ludo.$('myOtherView').html('New HTML of child view');
Generated 2016-12-02 19:27:13