1

My desktop application creates a html report at the end showing results and opens it in users default webbrowser. The report is in html5 and utilises a frameset, clicking items on the left hand frame changes the display on the right handside.

But one for one user it didn't work because they had NoScript add on installed which I think by default disables Javascript.

What is the accepted way to inform users they need Javascript enabled, can the report itself proactively identify whether Javascript has been disabled (for the report).

Paul Taylor
  • 13,411
  • 42
  • 184
  • 351

1 Answers1

1

You can use <noscript> tag which will be shown only if Javascript disabled:

<noscript> App can't run without JavaScript</noscript>

Andrey
  • 4,020
  • 21
  • 35
  • It was faster to find a duplicate and close than to write code. You could have done the same – mplungjan Mar 22 '17 at 10:01
  • @mplungjan I did search and came across noscript but the answers seemed to be about providing a javascript free version of the webpage, that was not feasible in my case, they did not address how to inform to the user that there was an issue. Also I thought there might be a standard way to inform user but it appears there is not really. – Paul Taylor Mar 22 '17 at 11:55