I have a textarea in a form that will eventually be an email form. Using Jquery I have loaded a signature file and want to display it in the text area. I have the file but using .html displays nothing and using val(data) produces the code on my box . Can anyone offer any help please
function loadedData(data) {
$('#mail_body').val(data)
}
$.get('../signature/sig1.htm', loadedData);