Is there a fancy way of binding a view to html already renderer in the page?
Example your server load all your page html, then you load views on top of that html without using the render method the first time you load the page.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’ve done something similar to what I think you’re trying to do. In my case, I added Backbone functionality on top of existing forms. Here’s a stripped down example:
Existing HTML:
Backbone:
The key is passing your existing html as the “el” property when you create your view.