Your HostICan Community  


Go Back   Your HostICan Community > Programming & Design > Javascript / Java Applets

Javascript / Java Applets Are you a JavaScript guy? Do you need help with JavaScript? This is the place to talk about anything related to Java.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 11-08-2009, 10:12 AM
vladoob vladoob is offline
Junior Member
 
Join Date: Oct 2009
Posts: 3
Default JavaScript examples on a subdomain at the hosting

I have created a subdomain at the hosting and there I make experiments with different scripts. I need a JavaScript example on drop down messages. Does anybody have this one?
Reply With Quote
  #2  
Old 11-08-2009, 11:45 AM
iceman1's Avatar
iceman1 iceman1 is offline
Senior Member
 
Join Date: Jan 2009
Posts: 100
Default Re: JavaScript examples on a subdomain at the hosting

This is simple! I have a such script on my site. Here's the source code, simply change options1-4 and text1-4.
HTML Code:
<table>
<tr>
<td><form name="ddmessage">
<tr>
<td><select name="selectbox" size="1" onChange="changecontent(this)">
<option selected value="options1">options1</option>
<option value="options2">options2</option>
<option value="options3">options3</option>
<option value="options4">options4</option>
</select>
</td>
</tr>
<tr>
<td><textarea rows="8" name="contentbox" cols="35" wrap="virtual"></textarea>
</td>
</tr>
</form>
</td>
</tr>
</table>
<script language="JavaScript">
var thecontents=new Array()
thecontents[0]='text1'
thecontents[1]='text2'
thecontents[2]='text3'
thecontents[3]='text4'
function changecontent(which){
document.ddmessage.contentbox.value=thecontents[which.selectedIndex]
}
document.ddmessage.contentbox.value=thecontents[document.ddmessage.selectbox.selectedIndex]
</script>
Reply With Quote
Reply

Tags
examples, hosting, javascript, subdomain

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 01:32 AM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.

Copyright © 2003 - 2008 HostICan. All Rights Reserved.