Hi there,
I know that Meteor doesn’t have an ability to run scripts from the template (like script tag) and it sounds like a bad practice, but we have pretty special use case. I’m downloading external webpages, inserting them using InnerHTML to the iframe and then making different manipulations (like editing dom elements, styles, etc). So all these pages contains scripts like jquery, carousel and so on and I need to execute them somehow to display pages properly. I know that by using eval() you can run scripts inside InnerHTML, but it looks like it doesn’t work for Meteor apps. Maybe someone have any idea how I can solve such problem?