אשכול: עזרה עם Forms
View Single Post
ישן 05-11-10, 13:13   # 7
Insane
Winner
 
מיני פרופיל
תאריך הצטרפות: Feb 2007
מיקום: דרום
גיל: 32
הודעות: 605

Insane לא מחובר  

תודה רבה, אחרי שהכנסתי את הצירוף שנתת עם Form בסוף, הגעתי לדף עם הקוד:

קוד:
	<script type="text/javascript">

function showSearchWord()
{
	var googleSearch = "/search/";
	var formsValue = document.getElementById("thesearchwords").value;
	window.location = googleSearch + formsValue;
	
	return false;
}
</script>

<form method="get" onsubmit="return showSearchWord();">
<input type="text" id="thesearchwords" name="words" size="20" />
<input type="submit" value="חפש" class="searchbotton" />
</form>
שוב תודה
  Reply With Quote