Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Backbone web app and I needed a way to call some javascript as soon as the all the document's content is available including that of mustache templates and partial templates. I have a mustache template that looks like the following(actually its hamstache which is just haml added into mustache):

#Container
  #header
    #profile
        Welcome 
        <...more stuff here...>
  #content
    <...more stuff here...>

In my application-wide layout file I call the javascript function adapt() on the onload page finished loading event:

<html>
<body onload="adapt()">
<%= yield %>
</body>
</html>

adapt() accesses the document header's content. This all works fine.

function adapt() {
  //preload styles
  headerS = document.getElementById('header').style;
  profileS = document.getElementById('profile').style;
  <...more stuff here...>
}

Next, I moved my header info into a partial template so that my mustache template now uses the partial:

#Container
  {{> header }}
  #content
    <...more stuff here...>

Now I am getting an document.getElementById(...) is null error. Immediately I am unable to access the document's elements that are in the header apparently just because these are inside of the partial. If I don't call adapt() on onload there are no errors and the template and the partial template render just fine.

Any ideas why accessing document elements in a mustache template is fine but adding a mustache partial and trying to access inside the partial broke this?

Don't know if this matters but just in case, I am using hogan as the mustache rendering engine

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.