<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: posting interactive html plots on websites in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/762106#M94063</link>
    <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/10678"&gt;@AdamChoen&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you open a web page where you've embedded an Interactive HTML page from JMP 17, please check the browser console (right click, Inspect, then choose Console) to see if there any errors reported.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there are any, please copy them here so I can see what might be going wrong.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;~John&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 31 May 2024 12:31:27 GMT</pubDate>
    <dc:creator>John_Powell_JMP</dc:creator>
    <dc:date>2024-05-31T12:31:27Z</dc:date>
    <item>
      <title>posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60478#M32952</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; I am interested in putting interactive JMP HTML files on my personal website, which is hosted by Squarespace. It seems like the only way to do this is 1) open the interactive HTML file on Chrome, 2) copy the HTML scripts (using Mac's "Developer" option), and 3) pasting the script into either a code box or "embed" box on my website. This does work (although I always get an error message saying the code is too long). However, it always puts the interactive plot under the footer at the bottom of the page (regardless of where I have "placed" the code box). Is there a way I can modify the script to where it actually puts the interactive plot where I want it to go? Alternatively, is there a way to simply "post" an interactive plot on a website, without the need for scripting? (I know hackers can steal my data this way; this is not a concern of mine. I want people to steal my data since it is for the common good!).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jun 2018 15:15:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60478#M32952</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-06-18T15:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60522#M32968</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/12111"&gt;@abmayfield&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That is probably going to be a little tricky.&amp;nbsp; Those files aren't really constructed for easy copy/paste of just the graph to be embedded in a website.&amp;nbsp; Do you have some experience with html, css, and JavaScript?&amp;nbsp; I haven't put any JMP&amp;nbsp;graphs on a website, but I exported a Graph Builder example to see how it's all structured.&amp;nbsp; All of the action happens within the &amp;lt;head&amp;gt; tags.&amp;nbsp; The actual DOM is just the head tags, which contain the CSS and JavaScript, and empty &amp;lt;body&amp;gt; tags.&amp;nbsp; The JavaScript inserts all of the content into the &amp;lt;body&amp;gt; tags.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to give it a go, I would recommend clipping out everything within the &amp;lt;style&amp;gt; tags and putting that into a CSS file, and then clipping out all the JavaScript in the &amp;lt;script&amp;gt; tags and saving that as a .js file.&amp;nbsp; I don't use foursquare, but I found this which may be helpful for adding your own custom CSS and Javascript&amp;amp;colon; &lt;A href="https://support.squarespace.com/hc/en-us/articles/205815928-Adding-custom-HTML-CSS-and-JavaScript" target="_self"&gt;https://support.squarespace.com/hc/en-us/articles/205815928-Adding-custom-HTML-CSS-and-JavaScript&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The JavaScript is pretty unreadable in its unformatted state.&amp;nbsp; I'm guessing it is ending up in the footer because the JavaScript just appends the content to the &amp;lt;body&amp;gt; tag, so it will go right at the end.&amp;nbsp; You could add a &amp;lt;div&amp;gt; to the body and edit the JavaScript to to write to that div instead.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I'm sure there will be some conflicts with the CSS that JMP provides with your website's own styling, so that may have some unintended consequences.&amp;nbsp; If you know what you're doing, you can probably sort that out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jun 2018 15:10:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60522#M32968</guid>
      <dc:creator>cwillden</dc:creator>
      <dc:date>2018-06-19T15:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60543#M32969</link>
      <description>&lt;P&gt;Cameron,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Thank you so much for your response. It looks as if it is as I feared: I can't just simply paste in the interactive plot onto a webpage! Squarespace supports CSS, Java, and HTML,&amp;nbsp;so I'll give your suggestion a try tomorrow. Ironically, Squarespace is deliberately designed to&amp;nbsp;move away from&amp;nbsp;having to script anything, though it CAN do so in a pinch. Thanks again for your suggestion, and I'll report back later regarding my success (or lack thereof) in case other JMP users are interested in posting interactive HTML plots on their websites, too! Anderson&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jun 2018 22:39:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60543#M32969</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-06-18T22:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60905#M33121</link>
      <description>&lt;P&gt;Hi Anderson,&lt;/P&gt;
&lt;P&gt;A few people at JMP are trying to find a solution to your issue, and we have logged the need for a future JMP enhancement to meet the need you describe.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As I mentioned when you first inquired, here are the steps to share.&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Create the graph and save it somewhere.&amp;nbsp; (You already did this).&lt;/LI&gt;
&lt;LI&gt;The key is you need to share the .htm file.&amp;nbsp; So a) you can attach it to an email tell them to OPEN it.&amp;nbsp; (I emailed you mine.&amp;nbsp; Try opening it.) b) You can put it on a shared drive and when they click on it, it will open. (I attached one that I Published to open with Chrome, also.&amp;nbsp; You will need chrome to open that one.)&lt;/LI&gt;
&lt;LI&gt;Alternately you can PUBLISH one or more reports and do the same with the .html file.&amp;nbsp; &lt;A href="https://www.jmp.com/support/help/14/create-a-web-report.shtml" target="_blank"&gt;https://www.jmp.com/support/help/14/create-a-web-report.shtml&lt;/A&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jun 2018 13:17:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60905#M33121</guid>
      <dc:creator>gail_massari</dc:creator>
      <dc:date>2018-06-22T13:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60915#M33123</link>
      <description>&lt;P&gt;Cameron,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;I have played around with JMP and Squarespace more, and, thankfully, I CAN simply paste in 150 pages of HTML code and get it to embed even the most complex graphs (including moving bubble plots!) into my website. The lingering issue is the placing of it in the footer (as I mentioned last time). You mentioned a solution to this involving the addition of a &amp;gt;div to the script. At the very end of the MONSTER HTML script, there is this line of code:&amp;nbsp;&lt;SPAN class="html-tag"&gt;&amp;lt;/script&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="html-tag"&gt;&amp;lt;/head&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="html-tag"&gt;&amp;lt;body&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="html-tag"&gt;&amp;lt;/body&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="html-tag"&gt;&amp;lt;/html&amp;gt;. Do I need to change one of those "body"s to "div" or is it more complicated than that? I tried changing them in isolation and when combined to div, but, knowing nothing about scripting, I could be way more complicated than that! Any ideas? I am attaching the 200-page HTML code for reference.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="html-tag"&gt;Thanks,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="html-tag"&gt;Anderson&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jun 2018 14:21:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60915#M33123</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-06-22T14:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60916#M33124</link>
      <description>&lt;P&gt;Gail,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;Thank you for your response. Sharing the html file/link is easy. What I'm trying to do is have the interactive plot appear on my website. So far, this is possible by copying an immense amount of HTML code and pasting it into a code box. What I can't figure out is why it always places my interactive plot in the footer area, not at the correct position in the page. I think this will just require some tinkering with the code, so I have reached out to Cameron to see if he can help show me what exactly needs to be modified in the code. The alternative is to just tell the reader to scroll to the bottom of the page!&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; I am very excited about this. I even got a moving bubble plot to embed so that the reader/user can play around with speeds, timing, etc. Once I can get it positioned correctly, my website is going to be chock full of moving/interactive JMP plots!&lt;/P&gt;
&lt;P&gt;Thanks for your help,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anderson&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2018-06-22 at 10.38.23.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/11220i34DD91CD1C6B1119/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2018-06-22 at 10.38.23.png" alt="Screen Shot 2018-06-22 at 10.38.23.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jun 2018 14:44:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60916#M33124</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-06-22T14:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60940#M33126</link>
      <description>&lt;P&gt;I found a really easy solution!&amp;nbsp; You can embed an html page within another html page using &amp;lt;iframe&amp;gt; tags.&amp;nbsp; Here's a really simple example:&lt;/P&gt;&lt;PRE&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
    &amp;lt;head&amp;gt;
        &amp;lt;title&amp;gt;Main Page&amp;lt;/title&amp;gt;
        &amp;lt;meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"&amp;gt;
        &amp;lt;meta name="viewport" content="initial-scale=1.0"&amp;gt;
        &amp;lt;style&amp;gt;
            iframe {
                width: 100%;
                height: 600px;
            }
        &amp;lt;/style&amp;gt;
    &amp;lt;/head&amp;gt;
    &amp;lt;body&amp;gt;
        &amp;lt;p&amp;gt;Some content above.&amp;lt;/p&amp;gt;
        &amp;lt;iframe src="Graph%20Builder.htm"&amp;gt;&amp;lt;/iframe&amp;gt;
        &amp;lt;p&amp;gt;Some content below.&amp;lt;/p&amp;gt;
    &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/PRE&gt;&lt;P&gt;In the opening iframe tag, you link to the JMP interactive html file.&amp;nbsp; You will need to upload that file to&amp;nbsp;foursquare so it can find it and make sure the path is correct.&amp;nbsp; You will also want to add styling to the iframe to resize it as needed.&amp;nbsp; In the &amp;lt;style&amp;gt; tags, I made the iframe as wide as possible and 600&amp;nbsp;pixels tall.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's what my result looks like.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="iframeexample.PNG" style="width: 592px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/11223i427DB074EDA86FA5/image-size/large?v=v2&amp;amp;px=999" role="button" title="iframeexample.PNG" alt="iframeexample.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jun 2018 16:30:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60940#M33126</guid>
      <dc:creator>cwillden</dc:creator>
      <dc:date>2018-06-22T16:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60959#M33132</link>
      <description>&lt;P&gt;This is a great idea, BUT apaprently Squarespace does NOT allow it! This is what they told me:&lt;/P&gt;&lt;DIV class="jx_ui_html_div chat_msg_holder"&gt;&lt;DIV class="meshim_widget_widgets_chatLogRenderer_ChatMessage chat_msg"&gt;"The people can still download the html files, it's just not able to open in-browser via a Squarespace link and have that static URL like a .pdf file would."&lt;/DIV&gt;&lt;DIV class="meshim_widget_widgets_chatLogRenderer_ChatMessage chat_msg"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="meshim_widget_widgets_chatLogRenderer_ChatMessage chat_msg"&gt;I am kind of hoping this guy is wrong, so I'm going to try to figure out a work-around to do it your way, which seems to be possible on most other websites!&lt;/DIV&gt;&lt;DIV class="meshim_widget_widgets_chatLogRenderer_ChatMessage chat_msg"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="meshim_widget_widgets_chatLogRenderer_ChatMessage chat_msg"&gt;Otherwise, I need to go back to pasting in the 200 pages of code.....&lt;/DIV&gt;&lt;DIV class="meshim_widget_widgets_chatLogRenderer_ChatMessage chat_msg"&gt;I will let you know if I am successful. Thanks again for your help. Surely posting an interactive HTML in the correct place in a personal website is achievable!&lt;/DIV&gt;&lt;DIV class="meshim_widget_widgets_chatLogRenderer_ChatMessage chat_msg"&gt;Anderson&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN class="jx_ui_html_span"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jun 2018 17:39:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60959#M33132</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-06-22T17:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61074#M33193</link>
      <description>&lt;P&gt;You can host the generated HTML in S3 and point your iframe to it from there. Here is an example:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blog.nascif.com/2015/08/a-software-developers-career-visualized.html" target="_blank"&gt;http://blog.nascif.com/2015/08/a-software-developers-career-visualized.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Relevant code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;iframe frameborder="1" height="650" src="&lt;A href="https://s3-us-west-2.amazonaws.com/jmp.examples/career/index.html" target="_blank"&gt;https://s3-us-west-2.amazonaws.com/jmp.examples/career/index.html&lt;/A&gt;" width="100%"&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jun 2018 14:21:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61074#M33193</guid>
      <dc:creator>nascif_jmp</dc:creator>
      <dc:date>2018-06-25T14:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61131#M33216</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; This sounds like a good plan, but it doesn't work for One Drive (my current file sharing/storing device). I had previously hosted the interactive HTML file there and referenced it on Squarespace, but it just shows up as an empty box on my website. Maybe I will try S3 later, but it seems like it should be the same thing, right? Maybe it's a Squarespace issue....&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 13:02:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61131#M33216</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-06-26T13:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61140#M33221</link>
      <description>&lt;P&gt;You might have to enable visibility properties in One Drive to get the pages to report the correct MIME type.&lt;/P&gt;
&lt;P&gt;It is also possible that Square Space is blocking all foreign pages (or all foreign JavaScript content) for security reasons.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try creating an iframe pointing to my interactive HTML page on S3. The URL is on my first post.&lt;/P&gt;
&lt;P&gt;This way you will know if the issue is with One Drive or SquareSpace.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, check your JavaScript console for error messages, you might find a clue there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 13:38:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61140#M33221</guid>
      <dc:creator>nascif_jmp</dc:creator>
      <dc:date>2018-06-26T13:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61155#M33225</link>
      <description>&lt;P&gt;Great idea! I don't know why I didn't just simply copy and paste your code before, but YOUR graph comes up on my website fine. There is a long list of complaints about OneDrive's handling of HTML files (they open as script, rather than the final product within OneDrive). I just tried it with Dropbox and had the same problem as with OneDrive. I wonder if it's because, when you share files via a link, the link doesn't look like a regular website link (like yours)?For instance: &lt;A href="https://www.dropbox.com/s/dwjyb5n0fk24zoo/Fit%20Y%20by%20X.html?dl=0" target="_blank"&gt;https://www.dropbox.com/s/dwjyb5n0fk24zoo/Fit%20Y%20by%20X.html?dl=0&lt;/A&gt;. Interestingly, there is an "embed" feature with OneDrive that is meant to get around this issue (it gives you HTML code to copy to your website), but, ironically, it doesn't work for interative HTML!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In any event, I have just signed up for an S3 account, and it WORKS! Man, I never thought it would be such a pain to do this, but I think that, thanks to your help,&amp;nbsp;using S3 to host the interactive HTML files from JMP and then referencing the S3 file links is a workable solution. Thanks so much for your help (and to the others, as well).&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 14:22:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61155#M33225</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-06-26T14:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61157#M33226</link>
      <description>&lt;P&gt;Glad it helped! And don't forget, if you use JMP Pro, you can export your JMP models to scoring code and host them in AWS too:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://dfd3m9li3aipf.cloudfront.net/index.html" target="_blank" rel="nofollow noopener noreferrer"&gt;https://dfd3m9li3aipf.cloudfront.net/index.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;or embed them (as JavaScript scoring code) directly into your HTML dynamic pages:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://jmp.scoring.iris.s3-website.us-east-2.amazonaws.com/" target="_blank"&gt;http://jmp.scoring.iris.s3-website.us-east-2.amazonaws.com/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://jmp.valentine.s3-website-us-east-1.amazonaws.com/" target="_blank"&gt;http://jmp.valentine.s3-website-us-east-1.amazonaws.com/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 14:29:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61157#M33226</guid>
      <dc:creator>nascif_jmp</dc:creator>
      <dc:date>2018-06-26T14:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61162#M33231</link>
      <description>&lt;P&gt;Awesome! And as a note to other interested individuals: Google Drive also DOES NOT WORK (interactive HTML files cannot be hosted by GoogleDrive and referenced in scripts to appear on websites). I wonder why S3 is the only one of these major clouds that works with interactive HTML (I didn't try Apple's iCloud, though). Shouldn't everyone have already switched over to this language for interactive file types?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My next step is going to be getting a JMP report with multiple windows to appear on my website. I'm guessing it should be no different from a single graph in terms of the steps necessary to do so (provided I use S3).&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 14:53:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61162#M33231</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-06-26T14:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61164#M33232</link>
      <description>&lt;P&gt;BTW, this is also an "accepted" solution; the reason it did not work for me was because none of my websites or clouds could properly "host" an interactive HTML file. As it turns out, Amazon's S3 server CAN do so, so, upon using your script and providing a link to the interactive JMP HTML plot found on my S3 cloud, the plot appears in the correct location, and I do not need to paste in the 200 pages of script.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 14:58:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61164#M33232</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-06-26T14:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61355#M33241</link>
      <description>&lt;P&gt; This request and the responses are awesome! Thanks!&lt;/P&gt; 
&lt;P&gt; I tried Dropbox, GoogleDrive, and OneDrive before my presentation about sharing Interactive HTML last year and had to report some disappointing  findings.&lt;/P&gt;
&lt;P&gt;It's good to know there are alternatives that work.&lt;/P&gt;&lt;BR /&gt;  
&lt;P&gt; By the way, iFrames work in the JMP Community too! &lt;/P&gt;
&lt;IFRAME frameborder="1" height="650" src="https://s3-us-west-2.amazonaws.com/jmp.examples/career/index.html" width="100%"&gt;&lt;/IFRAME&gt;</description>
      <pubDate>Tue, 26 Jun 2018 18:07:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61355#M33241</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2018-06-26T18:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61356#M33242</link>
      <description>&lt;P&gt;I wrote a complaint to OneDrive about their inability to handle HTML files. When you "open" an interactive HTML file WITHIN OneDrive, it only shows code!!! You would think Microsoft could handle this task....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do want to mention here, in case a non-JMP expert/employee stumbles across this post, that the &lt;STRONG&gt;raw data can be extracted from interactive plots&lt;/STRONG&gt; (i.e., a hacker could get at your data and reproduce them). I think that, for this reason, there is not currently a large demand for posting these kinds of interactive figures on personal websites (and why this is the first post on this topic). I'm mainly focusing on meta-analyzing already published data, so this is less of an issue for me.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jun 2018 18:12:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/61356#M33242</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-06-26T18:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/762009#M94030</link>
      <description>&lt;P&gt;Iframe is not working for me anymore with JMP17 interactive HTML.&lt;BR /&gt;&lt;BR /&gt;appreciate some TSing clues&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 19:01:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/762009#M94030</guid>
      <dc:creator>AdamChoen</dc:creator>
      <dc:date>2024-05-29T19:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/762012#M94032</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2557"&gt;@John_Powell_JMP&lt;/a&gt;&amp;nbsp; A questions came in that you might be able to answer Adam&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/10678"&gt;@AdamChoen&lt;/a&gt;&amp;nbsp; if you&amp;nbsp;@mntion someone they get pinged in email.&lt;/P&gt;
&lt;DIV class="forum-author"&gt;
&lt;DIV class="author-20"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gail_massari_0-1717011594157.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64628i185B5C6123A3C1BC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gail_massari_0-1717011594157.png" alt="gail_massari_0-1717011594157.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="author-20-content"&gt;
&lt;DIV class="jmp-author-username"&gt;&lt;A class="trigger-hovercard" href="https://community.jmp.com/t5/user/viewprofilepage/user-id/10678" target="_blank"&gt;AdamChoen&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV class="jmp-author-rank"&gt;&lt;SPAN&gt;Level III&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="jmp-expert-topics"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="solution-link"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="forum-article"&gt;
&lt;DIV class="forum-subj-action"&gt;
&lt;DIV id="actionMenuDropDown_78249686260a23" class="lia-menu-navigation-wrapper lia-menu-action lia-component-message-view-widget-action-menu"&gt;
&lt;DIV class="lia-menu-navigation"&gt;
&lt;DIV class="dropdown-default-item"&gt;&lt;A id="dropDownLink_78249686260a23" class="lia-js-menu-opener default-menu-option lia-js-click-menu lia-link-navigation" title="Show option menu" role="button" href="https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/762009?utm_campaign=cm&amp;amp;utm_source=general&amp;amp;utm_medium=notification&amp;amp;emcs_t=S2h8ZW1haWx8dG9waWNfc3Vic2NyaXB0aW9ufExXUzcwMkI3T1NZSUY1fDc2MjAwOXxTVUJTQ1JJUFRJT05TfGhL#" aria-expanded="false" aria-label="Show comment option menu" target="_blank"&gt;&lt;/A&gt;
&lt;DIV class="dropdown-positioning"&gt;
&lt;DIV class="dropdown-positioning-static"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="forum-post"&gt;
&lt;DIV class="post-info"&gt;&lt;SPAN class="message-date"&gt;May 29, 2024 03:01 PM&lt;/SPAN&gt;&lt;SPAN class="reply-author"&gt;&amp;nbsp;|&amp;nbsp;&amp;nbsp;Posted in reply to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A title="Message from 06-22-2018" href="https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/60940#M33126" target="_blank"&gt;message from cwillden 06-22-2018&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV id="bodyDisplay_7824968d4ac9ee" class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;
&lt;DIV class="lia-message-body-content"&gt;
&lt;P&gt;Iframe is not working for me anymore with JMP17 interactive HTML.&lt;BR /&gt;&lt;BR /&gt;appreciate some TSing clues&amp;nbsp;&lt;/P&gt;
&lt;DIV class="UserSignature lia-message-signature"&gt;Thanks, Adam&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 29 May 2024 19:40:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/762012#M94032</guid>
      <dc:creator>gail_massari</dc:creator>
      <dc:date>2024-05-29T19:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: posting interactive html plots on websites</title>
      <link>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/762106#M94063</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/10678"&gt;@AdamChoen&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you open a web page where you've embedded an Interactive HTML page from JMP 17, please check the browser console (right click, Inspect, then choose Console) to see if there any errors reported.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there are any, please copy them here so I can see what might be going wrong.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;~John&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2024 12:31:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/posting-interactive-html-plots-on-websites/m-p/762106#M94063</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2024-05-31T12:31:27Z</dc:date>
    </item>
  </channel>
</rss>

