I am just learning Javascript and our instructor isn't qualified to teach being that he has never used any form of code in his life. I want an onClick event to trigger a function that will move the contents of 3 text boxes in a dedicated table into specific positions on a new table meant for printing.
This is the code for the table with three text areas:
<table>
<tr>
<td rowspan="2">
<textarea rows="19" cols="52"> Notes directly from the source should go in this box. (copy and paste)</textarea>
</td>
<td> <textarea rows="3" cols="30">The URL or web-address of the source should go here.</textarea>
</td>
</tr>
<tr>
<td> <textarea rows="15" cols="30">Additional notes should go in this box.</textarea>
</td>
</tr>
</table>
The idea is to move the 3 pieces of text onto a digital notecard. The URL being on top, the direct notes on the middle, and the student's notes on the bottom. All with slightly different basic formating. Is this possible with one onClick function or would it be a lot easier to use three. Keep in mind if I did use three functions I would need them all to be triggered by the same event.
You can use jQuery and copy/paste/delete content from one HTML node into another:
Just give the corresponding elements an like:
And your target like this:
And you do this in the script tag:
Trigger it onClick for your elements. Don't forget to include jQuery.