|
hello all, my problem is that i would like to set the value of a test field to the value of a variable i got from a cookie. when the page loads and there is no cookie value set i assume that the value should come in null. if there is a cookie value set, then i would liek the text feilds value to be that. am i correct in this thought pattern? this is the dcript i have so far below. i get an error when the page loads,
onChange="setCookie('name', this.value)
at this line i get an error that i am missing a ")" around 'name'.
can anybody solve this perplexing problem? kudo's to those that can, help me please!!
<form action='/forum/WSmainframe.html' method='GET' target='mainframe' name='cart3form'>
<script language="JavaScript" type="text/JavaScript">
var name2 = getCookie('name');
window.document.cart3form.name.value = name2;
alert(window.document.cart3form.name.value);
document.write('<td width="60%" align="left"><input type="text" name="name" maxlength="40" size="31" onChange="setCookie('name', this.value)"> </td>');
</script>
</form>
|
|
|
|
|
|
|
|