No. Not reliably. You can sorta hack it in FF, IE, and Opera:
var nos = document.getElementsByTagName("noscript")[0];
// in some browsers, contents of noscript hang around in one form or another
var nosHtml = nos.textContent||nos.innerHTML;
if ( nosHtml )
{
var temp = document.createElement("div");
temp.innerHTML = nosHtml;
// lazy man's query library: add it, find it, remove it
document.body.appendChild(temp);
var ex = document.getElementById("example");
document.body.removeChild(temp);
alert(ex.innerHTML);
}
...But in Google's Chrome, the noscript element has no children in the DOM, and i would expect this to be true in other browsers as well as future versions of the browsers that i tested. You're better off finding some other place to store your data.