Top level function calls run once, whereas each function called from the 
renderer will be called multiple times. So I put any single calls at the end. 
The redrawSync ensures that the DOM elements have been created so the data that 
comes back has a place to be rendered.
    
    
    setRenderer createDom
    
    redrawSync()
    kajax.ajaxGet( ... )
    
    
    Run

Reply via email to