office365 - sharePoint 365 Iframe issue -
i have issue office 365 html page , when add js file cdn or external url not work, adding ifram it's not working.
here sample of code :
<!-- instansive widget --> <script src="assets/js/instansive.js"></script> <iframe src="//instansive.com/widgets/cdf503d7211fb7e7034b029afb67aacf75c3087b.html" id="instansive_cdf503d721" name="instansive_cdf503d721" scrolling="no" allowtransparency="true" class="instansive-widget" style="width: 100%; border: 0; overflow: hidden;"></iframe>
please if solution let me know.
thanks
the reason iframe not working because missing http: in source path.
change: src="//instansive.com/widgets/cdf503d7211fb7e7034b029afb67aacf75c3087b.html"
change to: src="http://instansive.com/widgets/cdf503d7211fb7e7034b029afb67aacf75c3087b.html"
i tested change , works correctly on machine (macbook air) using chrome.
cheers , happy coding!
Comments
Post a Comment