Jump to content



Welcome to KnowledgeSutra - Dear Guest , Please Register here to get Your own website. - Ask a Question / Express Opinion / Reply w/o Sign-Up!
- - - - -

Free Search Engine


5 replies to this topic

#1 atoz

    Newbie [Level 1]

  • Kontributors
  • Pip
  • 15 posts

Posted 06 October 2004 - 08:06 AM

Here are some sites which offer free search engine to search ur site...

1)www.picosearch.com

2) www.freefind.com

3)www.fusionbot.com

#2 Becca

    Princess

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPip
  • 1,234 posts
  • Gender:Female
  • Location:England
  • Interests:Into graphics, html/css, sports and music. I listen to metal, hard rock, r&b mainly but I like anything.

Posted 09 October 2004 - 04:29 PM

Cool thanks !!! I need one of those :)

#3 Roahl

    Newbie [Level 1]

  • Kontributors
  • Pip
  • 18 posts

Posted 27 October 2004 - 11:36 AM

This bit of code creates a little form on your page; 1 field where you can choose a search engine, another field where you enter the text. And ofcourse a button 'search'. The script is partly Dutch but the smart ones probably will figure it out <_< .

                               <script>[br]function n(naam, statnaam){[/br]        top.location.href=naam;[br]}[/br]function addplus(items){[br]   var plussed = "";[/br]   for (var t = 1; t <= items.length; t++) [br]      {[/br]      if (items.substring(t-1,t) == " ") [br]         {  plussed+="+";  }[/br]      else [br]         {[/br]             if (items.substring(t-1,t) == "+") [br]             {  plussed+="%2B";  }[/br]         else [br]                 { plussed+=items.substring(t-1,t); }[/br]                  }[br]      }[/br]   return plussed;[br]}[/br]function doSearch(){[br]   var words;[/br]   words = document.searchforit.query.value;[br]   var searchitems;[/br]   searchitems=addplus(words);[br]   var index;[/br]   index = document.searchforit.service.selectedIndex;[br]   var site;[/br]   site = document.searchforit.service.options[index].value;[br]   site+=searchitems;[/br]   if (notEmpty(searchitems))   [br]   {[/br]   n(site, ('searchengine' + index + '.htm'));[br]     }[br]}[/br]function notEmpty(word){[/br]   if (word == "" || word == null) [br]   {[/br]      alert("\nYou have to enter some text,\n\nbefore clicking on 'Search'"); [br]      document.searchforit.query.focus();  [/br]      return false;[br]   }[/br]   else [br]   {[/br]   return true;[br]   }[/br]}[br][/br]</script> </font><form[br]        action="javascript:doSearch();void(0)//" method="get"[/br]        name="searchforit" target="_self">[br]            <p><font color="#000000"><select name="service"[/br]            size="1">[br]                <option selected[/br]                value="http://www.altavista.nl/cgi-bin/query?pg=q&what=web&fmt=&q=">AltaVista</option>[br]                <option[/br]                value="http://www.askjeeves.com/main/askJeeves.asp?origin=&qSource=0&ask=">Ask Jeeves</option>[br]                <option value="http://nl.excite.com/search.gw?s=">Excite</option>[/br]                <option value="http://www.hotbot.com/?mt=">Hotbot</option>[br]                <option[/br]                value="http://www.ilse.nl/?COMMAND=search_for&LANGUAGE=NL&PROFILE=st&FAMILY=no&SEARCH_FOR=">Ilse</option>[br]                <option[/br]                value="http://www2.infoseek.com/Titles?qt=">Infoseek</option>[br]                <option[/br]                value="http://www.nl.lycos.de/cgi-bin/pursuit?adv=0&query=">Lycos</option>[br]                <option[/br]                value="http://www.metacrawler.com/cgi-bin/nph-metaquery.p?general=">Metacrawler</option>[br]                <option[/br]                value="http://www.mybegin.nl/search/?action=Search&cat=World%2FNederlands%2F&all=no&query=">MyBegin</option>[br]                <option value="http://www.scoot.nl/start.asp?ce=">Scoot</option>[br]                <option[/br]                value="http://zoeken.track.nl/Raven?sm=1&st=1&pl=10&qr=">Track</option>[br]                <option[/br]                value="http://search.yahoo.com/bin/search?p=">Yahoo</option>[/br]            </select>   <br>[br]            <input type="text" size="10" name="query"> <input[/br]            type="button" value="Search" onclick="doSearch()"></font></p>[br]        </form>[/br]</script


#4 Lyon

    Super Member

  • Kontributors
  • PipPipPipPipPipPipPipPipPip
  • 360 posts
  • Interests:Webdesign and Womans

Posted 27 October 2004 - 07:57 PM

Thanks for your links, very usefull.

#5 Roahl

    Newbie [Level 1]

  • Kontributors
  • Pip
  • 18 posts

Posted 28 October 2004 - 11:38 AM

I've just found another javascript from JavaScriptKit.com that will let the visitors search your site with Google. The code you need is here:[br]
<script type="text/javascript">[/br][br]// Google Internal Site Search script- By JavaScriptKit.com (http://www.javascriptkit.com)[/br]// For this and over 400+ free scripts, visit JavaScript Kit- http://www.javascriptkit.com/[br]// This notice must stay intact for use[/br][br]//Enter domain of site to search.[/br]var domainroot="www.javascriptkit.com"[br][/br]function Gsitesearch(curobj){[br]curobj.q.value="site:"+domainroot+" "+curobj.qfront.value[/br]}[br][/br]</script>[br][/br][br]<form action="http://www.google.com/search" method="get" onSubmit="Gsitesearch(this)">[br][/br]<p>Search JavaScript Kit:<br />[/br]<input name="q" type="hidden" />[br]<input name="qfront" type="text" style="width: 180px" /> <input type="submit" value="Search" /></p>[br][/br]</form>[br][/br]<p style="font: normal 11px Arial">This free script provided by<br />[/br]<a href="http://www.javascriptkit.com">JavaScript Kit</a></p>


#6 jamjamnorman

    Newbie [Level 2]

  • Kontributors
  • PipPip
  • 27 posts
  • Gender:Male
  • myCENT:81.70

Posted 24 August 2009 - 07:14 AM

if you use the google engine on a comercial site you need ads, which isn't the best.

for example this site.





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users