Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

www.google.co.uk/webhp?complete=0 + greasemonkey has worked fine for months, recently it has stopped suggesting from my search history , any ideas why ? ta

  • 11 답장
  • 1 이 문제를 만남
  • 4 보기
  • 최종 답변자: cor-el

more options

It is my preference that Google searches using my previous search history and it has worked fine for months. recently no auto suggestions pop up as i type in the Google box . Any ideas why ?? OS is XP Home

It is my preference that Google searches using my previous search history and it has worked fine for months. recently no auto suggestions pop up as i type in the Google box . Any ideas why ?? OS is XP Home

모든 댓글 (11)

more options

Are you allowing Google to use javascript? It will not do that without javascript.

more options

thanks ........... can you confirm where i check that javascript Google setting .

more options

.......... just found it is enabled under tools options

more options

You are not running any kind of javascript control such as NoScript or YesScript?

more options

Thanks Finitarry, please tell me where to check for and javascript controls. i cant think i am as nothing has changed since it was working ?? any other ideas ?

more options

Note that the www.google.co.uk/webhp?complete=0 site uses autocomplete=off.
So Firefox won't offer to suggest terms that you used before unless that autocomplete=off is removed.

more options

thanks cor-el, can you confirm should 'Auto-complete on' be ticked or not ticked on the Greasemonkey drop down menu. however i have tried ticked and not ticked and still no sugestions as i type in google ???

more options

any more suggestions would be really appreciated. thanks

more options

You can paste this code in the command line in the Web Console (Web Developer > Web Console;Ctrl+Shift+K) to verify that no input elements have autocomplete=off;

var A='autocomplete',c=0,e,E,f=0,T='\n',e=document.querySelectorAll('input['+A+']');
for(j=0;E=e[j];++j){T+='['+(++c)+'] '+(E.name||'#'+E.id)+' ('+(V=E.getAttribute(A).toLowerCase())+')\n';}
alert('autocomplete: '+c+T);
more options

Thanks Cor-el

That looks scary stuff . can you talk me through that in detail as to what it will do etc > thanks . Cheers Steve g

more options

The Web Console is one of the development tools that are included in current Firefox versions.

That console opens at the bottom of the Firefox windows and has a command line that makes it possible to evaluate JavaScript code in the context of the current web page.

See also "The command line interpreter":