views:

264

answers:

2

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
A: 

if ($.browser.msie) { selectElement.add(option); } else { selectElement.add(option,null); }

kim