Skip to Content
eBay Hacks, 2nd Edition
book

eBay Hacks, 2nd Edition

by David A. Karp
June 2005
Beginner
463 pages
14h 19m
English
O'Reilly Media, Inc.
Content preview from eBay Hacks, 2nd Edition

Search for Selected Text

Highlight text in any web page and search for it on eBay with the click of a button.

So you’ve found an item you like while surfing the web, and it occurs to you that you can probably get it cheaply on eBay. At this point, you’ve learned that you can highlight the name (or model number) of the product on the page, press Ctrl-C to copy it to the clipboard, then go to eBay, paste it into a search box (Ctrl-V), and press Search to look for matching items. If this scenario sounds familiar, you’ll definitely appreciate this shortcut.

Start by creating a new button on your browser’s Links bar [Hack #14] , and naming it “Search eBay” or something similar.

Next, if you’re using Mozilla, Firefox, or Netscape, place this JavaScript code (all on one line) into the button’s location field:

    javascript:s=document.getSelection();
            for(i=0;i<frames.length;i++){s=frames[i].document.getSelection();}
            location.href='http://search.ebay.com/'+escape(s);

If you’re using Internet Explorer, you’ll need this code:

    javascript:s=(document.frames.length?'':
            document.selection.createRange().text);
            for(i=0;i<document.frames.length;i++)
            {s=document.frames[i].document.selection.createRange().text;}
            location.href='http://search.ebay.com/'+escape(s);

Next, open any web page, highlight some text, and click your new search button. The next thing you’ll see is a search results page with items matching your selected text.

First, the code fills the variable s with any currently selected text on the ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

eBay Hacks

eBay Hacks

David A. Karp

Publisher Resources

ISBN: 059610068XErrata Page