Hi
is there any java script ( or other languages) that allows previewing the text you write in a field? (common example is when you want to write a text ad , you can preview your ad as you type)
my google search for "java preview script" had trash result.
preview script
Moderator: General Moderators
Here is
Code: Select all
<input type="text" onkeyup="document.getElementById('output').innerHTML = this.value" />
<div id="output"></div>