var hiddenText = document.createElement("TEXTAREA");
document.body.appendChild(hiddenText);
hiddenText.setAttribute("id", "hiddenText");
how do i use plain javascript to position this textarea off the page so that is unseen?
if i have to create a css style, how do i use javascript to write the css into the head?