المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : waiting for aids, if u please



mody80
09-10-2001, 06:36 PM
dear ally
hi,

if u please, i have a question :
i m using a java script for making a drop down menu & Go icon for my site
i want when the visitor
choose his choice then press on the icon go, the link open in a new window
can i make it ?? & how ??
thanx alot
note : i m using the following script :
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
// End -->
}
</SCRIPT>


<center>
<form name="form">
<select name="site" size=1>
<option value="">Go to....
<option value="http://www.yahoo.com">Yahoo
<option value="http://www.metacrawler.com">Metacrawler
<option value="http://www.des4arab.com">المصمم العربي
<option value="http://www.webcrawler.com">Webcrawler
<option value="http://www.lycos.com">Lycos
<option value="http://javascript.internet.com">JavaScript Source
</select>
<input type=button value="Go!" onClick="javascript:formHandler()">
</form>
</center>