/ Published in: jQuery
Text beim tippen wo anders anzeigen
Expand |
Embed | Plain Text
$('input#ID').keyup(function(){ $('div-where-the-text-will-show').text($(this).val()); });
You need to login to post a comment.
skrippendorf on 06/10/09
javascript js textmate input jquery text keyup
1 person have marked this snippet as a favorite
Text beim tippen wo anders anzeigen
$('input#ID').keyup(function(){ $('div-where-the-text-will-show').text($(this).val()); });
You need to login to post a comment.