well I use firefox because of its extenibility , its speed and its evergrowing support for standerds also i love userscripts.
I know opera has userscripts too which look pretty good I havnt really played around with them much but it seems they give the coder more power so that they could fix the pages insted of just adding new fetures to that webpage and kinda fixing them using greasemonkey (a userscript loader for firefox).
I spose what draws me to firefox more than opera is that I can change anything within the browser using extentions, having more controll over my browser.
quote:
Originally posted by Brian
I use Firefox, but I am not really happy with it (Still some javascript wee-wee's here and there.), does Opera has same problems like that?
=/ what sort of javascript problems? I havn't came accross any problems with it , could you elaborate on that a bit?
quote:
Originally posted by rav0
I never have had any problem Operaand JavaScript (or anything else), except "copy to clipboard". "Copy to clipboard" isn't real JavaScript, is Microsoft proprietary code that looks like JavaScript.
you can enable copy to clipboard by putting one of the two things bellow into your
user.js
To enable for all sites
code:
user_pref("capability.policy.default.Clipboard.cutcopy","allAccess");
user_pref("capability.policy.default.Clipboard.paste", "allAccess");
to enable for specific sites
code:
user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess");
user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess");
user_pref("capability.policy.allowclipboard.sites", "SitesHere aSpaceDefinesNewSite");
user_pref("capability.policy.policynames", "allowclipboard");