• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to display multiple values in textarea using JavaScript

 
Ranch Hand
Posts: 214
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I am new to JavaScript.

I have two textareas on my JSP and i want to display value from one text area to another textarea by selecting that particular value from one text area that value should be diaplayed to other textarea but when i select next value the previous value is lost.

How could i retrieve all the values selected from first textarea?

Following are the snippets i have used in JSP:

//MoveOver function in Javascript



//Calling Moverover from JSP




Could anyone please help on above.

Thanks in Advance.
 
Ranch Hand
Posts: 174
Java ME Opera Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Create function that goes through all checkboxes and add values like:

execute this function on all checkboxes change event.
 
reply
    Bookmark Topic Watch Topic
  • New Topic