Is it possible to disable IE8 "accelerators" on my website? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T07:34:12Z http://stackoverflow.com/feeds/question/499565 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/499565/is-it-possible-to-disable-ie8-accelerators-on-my-website 3 Is it possible to disable IE8 "accelerators" on my website? Dan 2009-01-31T21:04:55Z 2009-09-08T19:08:04Z <p>I'm a web developer focused on UI.</p> <p>Many interface features in my web application are based on double-clicking.</p> <p>In IE, this brings up that new annoying <strong>"accelerators" icon which interferes with my user interface</strong>. Is it possible to disable "accelerators" on my pages? Maybe with some new stupid IE-specific <strong>meta tag</strong>?</p> http://stackoverflow.com/questions/499565/is-it-possible-to-disable-ie8-accelerators-on-my-website/499891#499891 6 Answer by scunliffe for Is it possible to disable IE8 "accelerators" on my website? scunliffe 2009-02-01T00:34:17Z 2009-02-01T00:34:17Z <p>Although I feel for you (I don't think there is any way to disable them in code) I would advise against using double-click for a lot of your user interface as it goes against the paradigm of the Web.</p> <p>Many users are told on sites to not double-click to avoid duplicate transactions etc.</p> <p>The only thing I can really think of as a workaround would be to do some sort of explicit:</p> <pre><code>.blur(); </code></pre> <p>on the element that triggered the double-click event. I haven't tried this, but I would <em>hope</em> this would make the <a href="http://blogs.msdn.com/ie/archive/2008/03/06/activities-and-webslices-in-internet-explorer-8.aspx" rel="nofollow">accelerator</a> icon disappear.</p> http://stackoverflow.com/questions/499565/is-it-possible-to-disable-ie8-accelerators-on-my-website/672764#672764 1 Answer by Passer-by for Is it possible to disable IE8 "accelerators" on my website? Passer-by 2009-03-23T09:54:19Z 2009-03-23T09:54:19Z <p>Doubt if you still need this, but for everyone who's annoyed by this accelerator function, go to...</p> <p>Tools > Internet Options > Advanced</p> <p>Then uncheck the box for "Display Accelerator button on selection", under "Browsing".</p> <p>Cheers.</p> http://stackoverflow.com/questions/499565/is-it-possible-to-disable-ie8-accelerators-on-my-website/859972#859972 1 Answer by Daniel Steigerwald for Is it possible to disable IE8 "accelerators" on my website? Daniel Steigerwald 2009-05-13T19:35:47Z 2009-06-17T18:58:49Z <p>You can use Internet Explorer custom Event selectstart with return false to prevent showing that ugly slice icon.</p> <p>update: I have seen several solutions, which involve something like getElement -> add them event listener. It is not ideal solution. Use bubbling is better. Just register one selectstart on document, it is enough.</p> http://stackoverflow.com/questions/499565/is-it-possible-to-disable-ie8-accelerators-on-my-website/965356#965356 1 Answer by Andrew Davey for Is it possible to disable IE8 "accelerators" on my website? Andrew Davey 2009-06-08T15:09:18Z 2009-06-08T15:09:18Z <p>Using JQuery:</p> <pre><code>$('body').bind('selectstart', function(e) { return $(e.target).is(':input'); }); </code></pre> <p>This will disable selecting page content, except for in input elements.</p> http://stackoverflow.com/questions/499565/is-it-possible-to-disable-ie8-accelerators-on-my-website/1309693#1309693 0 Answer by Nick Levinson for Is it possible to disable IE8 "accelerators" on my website? Nick Levinson 2009-08-21T01:36:14Z 2009-08-21T01:36:14Z <p>Possibly, at the website, we can block Accelerators by adding the attribute oncontextmenu="return false:" into the body element. I'm doubtful that a colon belongs there, and maybe the word "false" is all that's needed for the value. Considering when the advice was rendered, this was for the beta release; I don't know if the IE8 final release has the same disabling method. I don't have IE8 or recent Win, so I can't test it. It might have the effect of blocking all context menus, not just those specific to the website being viewed. See the last post in <a href="http://www.utteraccess.com/forums/showflat.php?Cat=&amp;Board=50&amp;Number=1804672&amp;Zf=&amp;Zw=&amp;Zg=0&amp;Zl=a&amp;Main=1804672&amp;Search=true&amp;where=&amp;Zu=140925&amp;Zd=l&amp;Zn=&amp;Zt=15&amp;Zs=b&amp;Zy=#Post1804672&amp;Zp=" rel="nofollow">http://www.utteraccess.com/forums/showflat.php?Cat=&amp;Board=50&amp;Number=1804672&amp;Zf=&amp;Zw=&amp;Zg=0&amp;Zl=a&amp;Main=1804672&amp;Search=true&amp;where=&amp;Zu=140925&amp;Zd=l&amp;Zn=&amp;Zt=15&amp;Zs=b&amp;Zy=#Post1804672&amp;Zp=</a> as accessed 8-20-09.</p> <p>On whether websites that accept double-clicks are a bad idea: They're okay if visitors are told about them, both visitors who'd want to get the benefit of double-clicking and visitors who need to know not to double-click in order to avoid unwanted effects. Otherwise, I doubt they're good as to usability.</p> <p>Thanks.</p> <p>-- Nick</p> http://stackoverflow.com/questions/499565/is-it-possible-to-disable-ie8-accelerators-on-my-website/1395772#1395772 -2 Answer by Fanny for Is it possible to disable IE8 "accelerators" on my website? Fanny 2009-09-08T19:08:04Z 2009-09-08T19:08:04Z <p>I found this on another website.</p> <p>For your current situation, if you really want to disable the accelerators feature in IE 8, please perform the following steps. </p> <ol> <li><p>Start Internet Explorer 8.</p></li> <li><p>Click Tools -> Internet Options -> Advanced</p></li> <li><p>Then uncheck the box for Display Accelerator button on selection, under Browsing.</p></li> <li><p>Click Apply and OK.</p></li> </ol>