Real Estate Forums
| Coding HTML, ASP, PHP, JAVA MYSQL and more. All coding questions should be asked here. |
![]() |
|
|
Thread Tools | Display Modes |
|
|||
|
change this line:
<input type="radio" name="sitesearch" value="mysite.com" checked /> Subdivisions<br /> to this: <input type="hidden" name="sitesearch" value="mysite.com" />
__________________
SellFoN.com | Webinars & Tutorials Lead Generation and Marketing for Real Estate Professionals |
|
||||
|
Thank you! I had just about given up. Another question for you if you know and don't mind. Is there a way to get the search results to pop a new page so the user doesn't lose the original page?
The only problem I have with this search is that google paid ads are there along with my results. But, it's still good for me to have this. |
|
|||
|
this should do it. not sure if popup blockers will complain about the JavaScript window.open stuff (i don't use popup blockers, so please test this).
Code:
<script type="text/javascript">
function doSearch()
{
var frm = document.forms.search;
var q = escape( frm.q.value );
var site = frm.sitesearch.value;
var url = "http://www.google.com/search?q=" + q + "&sitesearch=" + site;
window.open( url );
}
</script>
<form name="search">
<input type="text" name="q" size="31" maxlength="155" value="" />
<input type="button" onclick="doSearch()" value="Search" />
<input type="hidden" name="sitesearch" value="mysite.com" />
</form>
__________________
SellFoN.com | Webinars & Tutorials Lead Generation and Marketing for Real Estate Professionals |
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| page error - snippet form code issue | mitch.argon | REW CMS 1 Questions | 2 | 09-14-2007 10:10 AM |
| simple form question | RESynergy | Coding | 5 | 06-04-2007 11:11 AM |
| Zip code, area code validation database.... | tracedef | Coding | 2 | 04-17-2007 08:26 PM |
| PHP form problem | RESynergy | Coding | 1 | 02-22-2007 09:41 PM |
| The Million Dollar Question on Link Request Form Software | Bob Crain | Linking Strategies | 2 | 08-09-2005 08:32 PM |