Jump to content

[SOLVED] Typing what I type


Canman2005

Recommended Posts

found one

 

simple

 

<script language="JavaScript">

function preview(id1, id2){

  var NewText = document.getElementById(id1).value;

  splitText = NewText.split(/\n/).join("<br />");

  var DivElement = document.getElementById(id2);

  DivElement.innerHTML = splitText;

}

</script>

<form action="#">

<label>Name:</label>

<input type="text" id="name" onkeyup="preview('name', 'preview-name');" />

 

<label>Phone:</label>

<input type="text" id="phone" onkeyup="preview('phone', 'preview-phone');" />

</form>

 

<h2>Preview</h2>

<dl>

<dt>Name:</dt>

<dd id="preview-name"></dd>

<dt>Phone:</dt>

<dd id="preview-phone"></dd>

</dl>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.