HighDots Forums  

Using Javascript to change text 2!

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss Using Javascript to change text 2! in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Shaun
 
Posts: n/a

Default Using Javascript to change text 2! - 11-04-2005 , 04:08 AM






Hi,

Is it possible to use JavaScript to change some text on a page according to
the value set in a select box. For example if the select box has value A
selected then the text further down that page displays hello, if the select
box is changed to B then the text changes to goodbye etc...

A previous poster suggested I should use the document.write() function but
how would I use this, how would it know what piece of text to update, and
how would I call it from the select box change?

Thanks for your advice



Reply With Quote
  #2  
Old   
Mick White
 
Posts: n/a

Default Re: Using Javascript to change text 2! - 11-04-2005 , 10:21 AM






Shaun wrote:

Quote:
Hi,

Is it possible to use JavaScript to change some text on a page according to
the value set in a select box. For example if the select box has value A
selected then the text further down that page displays hello, if the select
box is changed to B then the text changes to goodbye etc...

A previous poster suggested I should use the document.write() function but
how would I use this, how would it know what piece of text to update, and
how would I call it from the select box change?

<form action="">
<select
onChange="document.getElementById('foo').innerHTML =this[this.selectedIndex].value">
<option selected>Pick One</option>
<option value="Hello">A</option>
<option value="Goodbye">B</option>


</select>
</form>
<p id="foo"></p>

Mick


Reply With Quote
Reply




Thread Tools
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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.