What is the best way to read and/or set Internet Explorer options from a web page in Javascript? I know that these are in registry settings.
For example, I'm using the JavaScript Diagram Builder to dynamically generate bar charts within a web page. This uses the background color in floating DIVs to generate the bars. I would like to be able to read the browser setting for printing background colors, and if not checked, either warn the user that the colors won't print, or programatically select this option.
EDIT: As I think about the products that do something similar, I think they mostly just test whether Java or JavaScript or Cookies are disabled, which can be done without reading the registry.
So I guess the consensus is that what I want to do shouldn't be attempted.