Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im starter with ember, my question simple, I want to append a handlebar in my html, simple, but the append (in all my experiments) only work when I wrapp it with $(function(){...}). I dont want to use that (if its possible....). Any alternative, solution, suggestion?

<!--handlebar-->
<script type="text/x-handlebars" data-template-name="text">
  <h1>Send the message:</h1>              
  <input {{action "clicked" on="click"}} {{bindAttr name="name_attribute"}}  value='click me!!' type="button"/>
</script>​

<script>
  //namespace
  App = Ember.Application.create();

  //define view 
  App.myview = Ember.View.extend({
    templateName: 'text',
    name_attribute:'name_buttooooon',               
    message: '',
    clicked: function(event) {
      jQuery('#templateHere').html((this.get('name_attribute')));
    }                               
  });

  //create view
  App.myview=App.myview.create();

  //insert view in body
  $(function() {
    App.myview.append('#templateHere');  //Why I need to wrap this line in $(function(){..})???
  });

</script>

<div id="templateHere"></div>

</body>
share|improve this question
1  
Does append require the element to be available when you call it? document.getElementById('templateHere') won't give you anything where you're trying to use #templateHere, you have to wait until that part of the DOM is ready. – mu is too short Oct 7 '12 at 2:33

1 Answer

up vote 2 down vote accepted

Use Ember.Application.ready to perform operations once the app has loaded:

App = Ember.Application.create(
  ready: function() {
    this.myview.append('#templateHere');
  }
);
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.