Trang web này sẽ có chức năng hạn chế trong khi chúng tôi trải qua bảo trì để cải thiện trải nghiệm của bạn. Nếu một bài viết không giải quyết được vấn đề của bạn và bạn muốn đặt câu hỏi, chúng tôi có cộng đồng hỗ trợ của chúng tôi đang chờ để giúp bạn tại @FirefoxSupport trên Twitter và /r/firefox trên Reddit.

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

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 trả lời
  • 1 gặp vấn đề này
  • 2 lượt xem
  • Trả lời mới nhất được viết bởi 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

Tất cả các câu trả lời (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":