Your inquiry may not be entirely clear, but it seems like you are looking to achieve something similar to the following.
To begin, include a textarea and a button in your HTML with specific attributes. Utilize the "disabled" attribute only if you wish to render the text area disabled.
<textarea disabled id="displaytext"></textarea>
<button onclick="buttonFunction()">Click !</button>
Next, within your JavaScript file, create the function "buttonFunction()" to exhibit the value stored in the "signature" variable within the text area.
var signature = "This is the content to display";
function buttonFunction() {
document.getElementById("displaytext").innerHTML = signature;
}
Upon clicking the button, the displayed result will showcase the specified text.
https://i.stack.imgur.com/zWPUw.jpg