I have had couple of these issues. Most of them have either been related to too big .html files and takes too long to open OR special characters/combinations in the JMP datatable which get saved to .html and browsers don't like them (you can try checking browsers developer tools to find issues). In cases with special characters I have usually just removed those characters from datatable for quick fix.
At least for me this will cause issues:
Names Default To Here(1);
dt = New Table("Untitled 19",
Add Rows(4),
Compress File When Saved(1),
New Column("Column 1",
Numeric,
"Continuous",
Format("Best", 12),
Set Values([1, 2, 3, .])
),
New Column("Column 2",
Character,
"Nominal",
Set Values({"c:\2", "a", "b", ""}),
Set Display Width(65)
),
Set Label Columns(:Column 2)
);
nw = New Window("test",
Graph Builder(
Size(534, 456),
Show Control Panel(0),
Variables(X(:Column 1), Y(:Column 2)),
Elements(Points(X, Y, Legend(3)))
)
);
nw << Save Interactive HTML("$TEMP/deleteme.html");
Close(dt, no save);
Open("$TEMP");
Checking browser developer tools the issue is: "Uncaught SyntaxError: Octal escape sequences are not allowed in strict mode". Most likely related to this: c:\2 (it will work if you remove either \ or the numbers immediately after it). Hopefully I don't tag wrong person for Interactive HTML reports but @John_Powell_JMP
-Jarmo