quickbooks online - specific button tag does not work inside meteor.js template but works when placed with in <head> -


following code not work when inside meteor.js template

<div class="row"> <div class="col-lg-12 pull-right">        <ipp:connecttointuit></ipp:connecttointuit> </div>         </div> 

but works when inside tag

<head> <div class="row"> <div class="col-lg-12 pull-right"> <ipp:connecttointuit></ipp:connecttointuit> </div> </div> </head> 

i trying achieve in meteor described here https://developer.intuit.com/docs/0050_quickbooks_api/0020_authentication_and_authorization/widgets

intuit's widgets not support being embedded inside javascript. therefore ask our devs use widgets without formatting applied.


Comments