RE: AW: Disabling Back Button in IE

2006-02-23 Thread George.Dinwiddie
But it *is* a good way to lose customers. ;-) I, for one, tend not to do business with sites like that. > -Original Message- > From: Josh McDonald [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 22, 2006 5:45 PM > To: user@struts.apache.org > Subject: Re: AW:

Re: AW: Disabling Back Button in IE

2006-02-22 Thread Josh McDonald
Disabling keys in the browser is a bad idea for regular users, a disabling idea for the vision-impaired, and for many organisations technically against the law since you're deliberately doing something out of the norm which makes it inaccesible to disabled people. -- "His comrades fought be

Re: AW: Disabling Back Button in IE

2006-02-22 Thread Frank W. Zammetti
I knew something was weird... I have basically the exact same code in one app on every page in response to onLoad: onLoad="document.onkeydown=function(e){if(event.srcElement.type=='text'||event.srcElement.type=='textarea'){return true;}else{return false;}};" Now, at least in IE, that seems to blo

AW: AW: Disabling Back Button in IE

2006-02-22 Thread Bernhard Slominski
ts Users Mailing List > Cc: user@struts.apache.org > Betreff: Re: AW: Disabling Back Button in IE > > > Doesn't stop me from clicking my mouse wheel, which is mapped > to Back :) > > Betreff: Re: Disabling Back Button in IE > >> > >> Can't (and shouldn&

Re: AW: Disabling Back Button in IE

2006-02-22 Thread Frank W. Zammetti
Doesn't stop me from clicking my mouse wheel, which is mapped to Back :) -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com AIM: fzammetti Yahoo: fzammetti MSN: [EMAIL PROTECTED] On Wed, February 22, 2006 11:09 am, Eickvonder Bjoern said: > Just

AW: Disabling Back Button in IE

2006-02-22 Thread Eickvonder Bjoern
Just add document.onkeydown = function(e) { if (document.all) { if (event.srcElement.type=="text" || event.srcElement.type=="textarea") return true; else return false; } else { if (e.target.type=="text" || e.target.ty