Hi,
I want to populate 2 javascript variables with data from 2 form text boxes, the javascript and form text bosex are on the same page using the following code:
Form:
<form name="addSite" method="post" action=""> <label>URL: <input name="url" type="text" id="url" value="<? echo $site; ?>"> </label> <p>Title: <input type="text" name="title"> </p> </form>
How would i populate the javascript variables: 'addSite' and 'title' with the respective form data?