Hello. I am new to javascript and I am stuck. Basically, what I have to do is create a form and when the user hits the submit button everything the user typed in the form will be displayed in another div. I have the coding right, however it displays all in one line instead of being structured like the form. Is there anyway I can have the results displayed like...
Name:
Number:
Email:
Comments:
Here is what I have so far....PLEASE HELP! ! !
<script type="text/javascript">
function test(){
var name = document.getElementById('name').value;
var num = document.getElementById('num').value;
var email = document.getElementById('email').value;
var com = document.getElementById('com').value;
Bookmarks