Претражи подршку

Избегните преваре подршке. Никада од вас нећемо тражити да зовете или шаљете поруке на број или да делите личне податке. Пријавите сумњиве радње преко „Пријавите злоупотребу” опције.

Сазнај више

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 одговорa
  • 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":