Is it possible to disable IE8 "accelerators" on my website? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T07:34:12Zhttp://stackoverflow.com/feeds/question/499565http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/499565/is-it-possible-to-disable-ie8-accelerators-on-my-website3Is it possible to disable IE8 "accelerators" on my website?Dan2009-01-31T21:04:55Z2009-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#4998916Answer by scunliffe for Is it possible to disable IE8 "accelerators" on my website?scunliffe2009-02-01T00:34:17Z2009-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#6727641Answer by Passer-by for Is it possible to disable IE8 "accelerators" on my website?Passer-by2009-03-23T09:54:19Z2009-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#8599721Answer by Daniel Steigerwald for Is it possible to disable IE8 "accelerators" on my website?Daniel Steigerwald2009-05-13T19:35:47Z2009-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#9653561Answer by Andrew Davey for Is it possible to disable IE8 "accelerators" on my website?Andrew Davey2009-06-08T15:09:18Z2009-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#13096930Answer by Nick Levinson for Is it possible to disable IE8 "accelerators" on my website?Nick Levinson2009-08-21T01:36:14Z2009-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=&Board=50&Number=1804672&Zf=&Zw=&Zg=0&Zl=a&Main=1804672&Search=true&where=&Zu=140925&Zd=l&Zn=&Zt=15&Zs=b&Zy=#Post1804672&Zp=" rel="nofollow">http://www.utteraccess.com/forums/showflat.php?Cat=&Board=50&Number=1804672&Zf=&Zw=&Zg=0&Zl=a&Main=1804672&Search=true&where=&Zu=140925&Zd=l&Zn=&Zt=15&Zs=b&Zy=#Post1804672&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-2Answer by Fanny for Is it possible to disable IE8 "accelerators" on my website?Fanny2009-09-08T19:08:04Z2009-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>