|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-11-05 11:05 UTC] kester dot everts at wanadoo dot nl
Description: ------------ I am using IE6 with WinXP Pro. It also applies to all other MSIE browsers with AutoCompletion. When using the PHP.net's auto completion, which works fine btw, IE overlaps this with its own AutoCompletion (only with AutoCompletion has been switched on, of course), because I have been at this website before and have searched for functions :) It be easily solved by setting the autocompete attribute value to 'off'. See http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/autocomplete.asp. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 20 10:00:01 2025 UTC |
I am sorry to say... Test resulted negative. I took a look at your script. You used Fa.autocomplete="off". I tested this. It is correct and it should work, but somehow it does not. It is a bug in MSIE, I think. There is a workaround: Use Fa.setAttribute("autocomplete","off"). I succesfully tested this.Succesfully tested! Here are the changes. Add an event: --------------- FA.onchange=FC; --------------- Add function FC(): ----------------------------------------- function FC() { if(FA.value=="quickref") Fa.setAttribute("autocomplete", "off"); else Fa.setAttribute("autocomplete", "on"); } ----------------------------------------- Remove Fa.setAttribute() from FZ() and fh_EBlurT(). Run FC() at the end of the script: ----- FC(); ----- That's all. Good luck!