Jump to content

keoki123

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by keoki123

  1. is it possible to put html tags in a text area? if so how? thnx
  2. phew i finally got it going however<script language="JavaScript"> function getParams() { var idx = document.URL.indexOf('?'); var params = new Array(); if (idx != -1) { var pairs = document.URL.substring(idx+1, document.URL.length).split('&'); for (var i=0; i<pairs.length; i++) { nameVal = pairs.split('='); params[nameVal[0]] = nameVal[1]; } } return params; } params = getParams();</script><table width="100%" height="160" border="0"> <tr> <td height="156" align = "center"> <script LANGUAGE="JavaScript"> name = unescape(params["name"]); position = unescape(params["position"]); mobile = unescape(params["mobile"]); document.write("Name = " + name + "<br>"); document.write("Position = " + position + "<br>"); document.write("Mobile = " + mobile + "<br>"); </script> </td> </tr></table>this code is suppose to show the values from the previous form... it works fine with firefox but in IE it says its undefined..........
  3. i'm kind of new to the whole javascript thing....but how do i pass values to the next page when i click submit...
×
×
  • Create New...