0
Showing Form Field Values OnKeyUp
This will output an input form field value as you type it.
<input type="text" name="website" onkeyup="websiteValue(this.value)" />
<div id="input"></div>
<script type='text/javascript'>
function websiteValue(value){
var input = $('#input');
(value.length != 0) ? input.html(value) : input.html('');
}
</script>
Levels: Syntax: JavaScript





