I want to disable the custom Save Dialog of IE and Firefox OR add a new "Save to My Location" option in it. I think I need to create plug-ins for IE and Firefox.
A:
Yes I think you must write Extensions for the browsers, too. I don't know how that would be done for IE for Firefox you could start there:
https://developer.mozilla.org/en/Extensions
floplus
2009-04-22 07:37:32
A:
if ($.browser.msie) { selectElement.add(option); } else { selectElement.add(option,null); }
kim
2010-01-12 02:33:56