Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

Mozilla 도움말 검색

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

자세히 살펴보기

Is there a shortcut in Firefox to get a website's search box?

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

more options

is there a shortcut in Firefox that gets you to the search box on a website? I looked. Can't find one. If the answer is no, how do you request a new feature?

Not like ctrl L to the address bar. Being on wikipedia, ebay, amazon, etc - press shortcut, type blah blah, enter and it does a search on that website. ctrl L & tabbing is a pretty ordinary workaround.

Even better, press Up/Down in the website search box shows previous/next searches - like Up/Down at windows or linux command prompt shows previous commands.

is there a shortcut in Firefox that gets you to the search box on a website? I looked. Can't find one. If the answer is no, how do you request a new feature? Not like ctrl L to the address bar. Being on wikipedia, ebay, amazon, etc - press shortcut, type blah blah, enter and it does a search on that website. ctrl L & tabbing is a pretty ordinary workaround. Even better, press Up/Down in the website search box shows previous/next searches - like Up/Down at windows or linux command prompt shows previous commands.

모든 댓글 (6)

more options

It's site-dependend and system-dependend. For wikipedia I've ctrl+shift+f, but it can be different for Mac ;).

more options

ctrl+shift+f doesn't work on Windows 8 - dark ages work laptop they gave me. Anyone know the answer for Windows and Linux/Ubuntu?

more options

https://addons.mozilla.org/en-US/firefox/addon/add-to-search-bar/ Add to Search Bar Make any pages' search functionality available in the Search Bar

https://addons.mozilla.org/en-US/firefox/addon/context-search/ Context Search Expands the context menu's 'Search for' item into a list of installed search engines, allowing you to choose the engine you want to use for each search.

more options

Sorry, neither of those plugins do what I was looking for.

It might require a standard, formal or informal, where something is included in the html to mark where the search box is on the page. Then a shortcut in a plugin could take you straight to the search box on the page.

more options

One adds that sites search to the Firefox search box. You don't need to be on the site to use it.

The other, when on a website, will use that site's search box without you having to look for it.

more options

You could create a bookmarklet to set focus to a specific field and use an extension to add a keyboard shortcut. I have such a bookmarklet to set focus to the textarea on this forum and some others.

It is basically a list of queries and setting the focus to the element when found.

For the search bar on this page:

javascript:(function(){var e=document.querySelectorAll('input[id="search-q"]');if(e.length){/*console.log(e[0].nodeName);*/e[0].focus();e[0].scrollIntoView(true);}})()