hai,
i want to use the
js variable outside of the <script> </script> tag.
.............................index.html........... ........
<script language="javascript">
function me()
{
var v=document.f1.s1.selectedvalue;
return v;//// I want this variable to use out side of this script
}
</script>
<form name="f1">
<select name="s1" onChange="me()">
<option>......
</select>
accessing the variable "v" here
</form>
thanq