I have some HTML where parts of the content are created from GWT. Assume that I have no access to the GWT code, how can I get access to this to modify the content in javascript in the JSP?
My aim is to change DIV text that was genereated with GWT code and I want to change this in the JSP using JavaScript with something like
document.getElementById("title").innerHTML = "new title";
The problem that I have, is the GWT DIVS created seem to be loaded after the body of the JSP has loaded, meaning when I want to access document.getElementById("title").innerHTML
it doesn't see it, until after the page has loaded?