المثال
ضع رابط موقعك معي نبذه 541ed_10


<center>
<form name="combowithtext">
<select name="example" size="1" onChange="showtext()" style="border-style: dashed; border-width: 1px">
<option value="http://www.google.com">google</option>
<option value="https://hkrkoz9.blogspot.com/">هكركوز الكويت</option>
<option value="https://blog-hkrkoz.yoo7.com/">blog-hkrkoz.yoo7</option>
</select>
<input type="button" value="إأضغط"
onClick="gothere()"><br>
<textarea rows=9 cols=48 wrap="virtual" name="text" style="border-style: dashed; border-width: 1px"></textarea>
<script language="javascript">
var shortcut=document.combowithtext
var descriptions=new Array()
//extend this list if neccessary to accomodate more selections
descriptions[0]="يمكنك التعديل والزياده لروابط"
descriptions[1]="اهلا وسهلا فيكم بموقع الجميع"
descriptions[2]="خدمات واكواد وبرمجه وغيرها تمتع"
shortcut.text.value=descriptions[shortcut.example.selectedIndex]
function gothere(){
location=shortcut.example.options[shortcut.example.selectedIndex].value
}
function showtext(){
shortcut.text.value=descriptions[shortcut.example.selectedIndex]
}
</script>
</form>
</center>