- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
I need to have the following open up inside an iframe on a page of my site.
http://myapp.affordableapps.com.au/app/index.html?mode=0&appId=e76792a2-c5c4-11e7-9bb5-0698b23e0a1a
Could someone provide me with the iframe code I would wrap this in please?
I want to be able to adjust width height of frame.
Thank you
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
If your Weebly site is NOT using SSL - i.e. it is calling via http then this should work for you...
<iframe src='http://myapp.affordableapps.com.au/app/index.html?mode=0&appId=e76792a2-c5c4-11e7-9bb5-0698b23e0a1a' style='width:900px;height:700px;overflow:hidden' frameborder='0' marginwidth='0' marginheight='0' scrolling='yes'></iframe>
Now if your Weebly site IS using SSL - i.e. it is calling via https then it won't work at all. Why - because the address at myapp is NOT using SSL and will not load as https. This is a security issue known as "mixed content" and here's an explanation for you...
Post back if you need more help...
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
If your Weebly site is NOT using SSL - i.e. it is calling via http then this should work for you...
<iframe src='http://myapp.affordableapps.com.au/app/index.html?mode=0&appId=e76792a2-c5c4-11e7-9bb5-0698b23e0a1a' style='width:900px;height:700px;overflow:hidden' frameborder='0' marginwidth='0' marginheight='0' scrolling='yes'></iframe>
Now if your Weebly site IS using SSL - i.e. it is calling via https then it won't work at all. Why - because the address at myapp is NOT using SSL and will not load as https. This is a security issue known as "mixed content" and here's an explanation for you...
Post back if you need more help...
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Problem solved
Thanks again
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
This is great. But how can I make it so the iframe is larger? As it only uses part of the screen.
Ie it is a smaller window within a window.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report
- Subscribe to RSS Feed
- Mark Thread as New
- Mark Thread as Read
- Float this Thread for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Thank You! I spent hours trying to figure this out.