HTML - How To Create A Search Mashup
I tried searching the site but couldnt find anything. So i want to make a search bar that searches different websites, and opens chosen websites in new windows with the search term that was entered in my search bar in the search bar of that site that comes up.
For example on my website, i would have a search bar and selectable box options below it with website names such as amazon, target, walmart, ebay, barnes & nobles, etc. So say i want to find a book and i put in the isbn number on the search bar in my website and i have all those websites checked. When i search that isbn number, all those websites pop up in pop up windows and show results from their website searches. (for example amazon will display an amazon search result of that isbn number, barnes and nobles will have the isbn searched and the results displayed. The end result i am looking for is to have coding like this website, www.autotempest.com . How when u search cars, all the website results are displayed in their own tabs within the website, keeping the user always on autotempest.com instead of into pop ups. if you could link me to other topics or show me some websites where i can learn how to code something like that, it would be much appreciated. Thanks Similar TutorialsUnfortunately my website has to work in an offline mode too so no online solution is possible. The javascript engine cchana linked is unfortunately very limited and pretty much useless. Hi, Here you are going to know how to create a shortcut search form for Google or Youtube or any website: First of all you need to open notepad in your computer and type the following code: You know: HTML Code: <html> <body> Alright, This is famous code... Now you need to create a form search so what you need to type is: HTML Code: <form name="Youtube Search" method="get" action="http://www.youtube.com/"> <input type="text" name="search_query"> <input type="submit" value=" Search! "> </form> Q: Why did we put the text name "search_query"? A: I have created this simple code by searching on youtube and looking at the link above. Ex: I have searched for " html language " The link appeared: http://www.youtube.com/results?searc...+language&aq=f So... We see " search_query " then, " = " and " method="get" " mean that the text which you type in the html page will be put in a link after " = ". I mean if I type in the textbox that I want to search for html language. It will be put like that: http://www.youtube.com/search_query=html+language This is it. Then, put the following code to end the html code and the body: HTML Code: </body> </html> Now, It should work completely.. Hope you understand my own code in searching on websites without entering it or putting it in your website. For example, this scenario: 1. My page contains the text "giraffes in corduroys" 2. somebody googles that text - either as a phrase or just the words 3. google points them to my page 4. the user clicks to go to my page... Is there any way to determine that it was the text "giraffes in corduroys" which brought them to my page? Would the crux be getting the previous URL in the browser history? Hi, I am wanting to impliment a feature where I can install a search box on my website that will search anothers content. Basically I have two sites, one has thousands of sound effects on it, the other is more of a portal site. On the portal site I want to add a search box that will link into the other sites database so that the user would navigate away from the portal site and be taken to the stabndard search results page of the main site based on thier queory. Is there any code that anyone knows of to do this? Thanks all! Hi...not sure if this is the proper place to post this or not. I'm trying to do two things...first: I'm trying to set up a search box in frame 1 that will search, scroll to and highlight text in frame 2. Is this possible? I've been searching around for days looking for answers, and have so far come up short. I managed to create a search box in frame 1 that reloads frame 2, but that's not really what I'm after. ---------------------------- Now for the second thing I'm looking to do (along the same lines): I want to click a link in frame 1 that scrolls to a target in frame 2 and highlights it. The target is a word in the middle of a paragraph. Any help would be appreciated. I'm pretty green, so treat me like a beginner. Thanks so much! I'm trying to have my search box and search button aligned but I can't seem to get it working. Whenever I try to move one vertically, both of them end up moving and I'm all out of ideas. Here is the code: Code: <script src="http://supportforms.epnet.com/eit/scripts/ebscohostsearch.js" type="text/javascript"></script> <form action="" method="post" onsubmit="return ebscoHostSearchGo(this);"><input id="ebscohostwindow" name="ebscohostwindow" type="hidden" value="1" /> <input id="ebscohosturl" name="ebscohosturl" type="hidden" value="http://search.ebscohost.com/login.aspx?direct=true&site=ehost-live&scope=site&type=1&custid=S6281220&groupid=Main&profid=EDS&mode=bool&cli0=FR&clv0=Y&cli1=RV&clv1=Y&cli2=PT82&clv2=(PT+Academic+Journal+or+PT+Periodical+or+PT+Trade+Publication)%7e(PT+Book+or+PT+Almanac+or+PT+ebook+or+PT+audiobook)%7e(PT+Newspaper+or+PT+NEWSP+or+PT+Newswire+or+PT+WIRES)&lang=en&authtype=guest" /> <input id="ebscohostsearchsrc" name="ebscohostsearchsrc" type="hidden" value="url" /> <input id="ebscohostsearchmode" name="ebscohostsearchmode" type="hidden" value="+" /> <input id="ebscohostkeywords" name="ebscohostkeywords" type="hidden" value="" /> <div style="background-image: url('http://i.imgur.com/Wjilo.jpg'); background-repeat: no-repeat; width: 900px; height: 600px; font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 9pt; color: #353535;"> <div style="padding-top: 249px; padding-left: 70px;"><span style="font-weight: bold;" ></span> <div> <input id="ebscohostsearchtext" name="ebscohostsearchtext" type="text" size="23" style="font-size: 16pt; padding-right: 340px; height: 50px;"> <button type="submit" style="border: 0; background: transparent;"><img src="http://i.imgur.com/nYPoa.png" width="145" hspace="25" alt="submit" /> </div> </div> </div> </form> Hi, I want to make a search box on my website. The thing is that I would like the search bar to be able to search on multiple search engines. For example I can type a movie in the search field and then I can select if I want to search for the movie either on google or on IMDb. I want it to look like this: http://subtext.no/kjartan/charlie/searchbox.png If anyone could help me get this kind of searchbox it would be great. Thanks in reaply. I'm using IE8 to test Hi, I'm trying to add a google search box (in a table) to my web page, but for some reason it the input button links to the page I am currently on. The strange part is that I put the same exact code in another cell right next to the other google search box and that one works wonderfully while the first one still links to the current page. It is the same with any search engine (yahoo, bing, ask), the first search box links to the current page and the rest work great. Here is the code I use: Code: <form method="get" action="http://www.google.com/search"> <input style="width:140px" type="text" name="q" size="31" maxlength="255" value="" /><br /> <input type="submit" value="Google Search" /> </form> I am looking to sell -shirts on Ebay and I would like to be able to point customers to my ebay store by links on the auction page similar to this seller here. http://<br />
http://cgi.ebay.com/C...QQcmdZViewItem Can someone tell me how to create something similar to what this seller has posted at the top where the blinking letters read Click on your size with the shirt sizes just to the right of that? Thank you! ok so im a rtard with computers and im tring to be a webmaster lol. i got stuff like this http://adultfriendfinder.com/go/g1293359-ppc that im wondering if i can make it a link in email or on my friend finder profile or in a setting like this. and what about **** like this <script type="text/javascript" src="http://banners.cams.com/go/page/js_ad_pop?plain_text=1&skip_lpo=1&win_width=1024&win_height=768&page=model&pid=g1293359-pct&lang=english" charset="iso-8859-1"></script> I want to create a Link bar, just like n4g's. Look right at the top and you will see a grey bar with liinks. How do i go about doing this? Thanks http://n4g.com/ ok now how do i create a button like submit like Code: <form> <input type="submit" value="submit" /> </form> so my question is can we create a button with interface like submit but with different name like instead of submit we can have "FIRE" or something like that or do we have to create button in gimp/photoshop and then link them ? plz help ? Hi all, I have a menu as a list.... <ul> <li><a href="/jsp/forms_center/hr_general.jsp">HR General</a></li> <li> </li> <li><a href="/jsp/forms_center/benefits.jsp">Benefits</a></li> <li> </li> <li><a href="/jsp/forms_center/payroll.jsp">Payroll</a></li> <li> </li> <li><a href="/jsp/forms_center/it_forms.jsp">IT</a></li> <li> </li> <li><a href="/jsp/forms_center/office_forms.jsp">Office Services</a></li> <li> </li> </ul> From this I would like to have a separate sub-menu for each item on the list. For example when they move the mouse over benefits a separate menu should come up showing different benefits. Any suggestions? Thanks in advance for any help, Jehan What do you use to create a website??? HTML editors WordPress notepad ++ HTML kit Dreamweaver cs3 How do you create a box, table, sidebar, or whatever you call it on the side of your webpage to place links to other pages on your site, so that it is separated from the body of your webpage? Obviously I am new to webpage creation and HTML, so any help is appreciated I want to link to a website in such a manner so that when the person clicks on the link, a new browser window pops up in front of the current window? How is it done? How do you pick a minimum resolution for the website? Such as the width? Whats the current standard for browsers today would you say most people have today, 1000px wide would be a good guess? Ash Hi All, I'm a co-founder of an organization by the name of CLEAN Education, I am responsible for the web site because I'm pretty tech savvy. The site is he www.cleaneducation.org I'm currently cleaning the website to try to make it much more functional for me to update and make it consistent on multiple browsers. Question: How can I make a template? Currently when I want to alter part of the non individual page specific parts (such as the right column that is for recent news) I have to go through each and every page to alter it. Can I make a a template that has everything other than the center white part that is page specific and then somehow call on the content for the page specific part for each page? Altering 10-15 pages on a weekly basis is becoming tedious. Thanks all Hi Experts, I want to create the page structure shown in the snapshot below using CSS and HTML. The header part is an image which is off same size as shown in the snapshot. All the blue boxes are links, along with the lists in the bottom of the page. |