I have a preformatted textarea that my user can edit. Once done I want the user to be able to print the content of the textarea. I set up a javascript to do that but it prints the entire page rather then just the textarea. How do I print just that part? TIA.
Code:
function startPrint(theForm) {
print(theForm.mytextarea.value);
}