Return to Snippet

Revision: 14740
at June 10, 2009 03:42 by skrippendorf


Updated Code
$('input#ID').keyup(function(){
   $('div-where-the-text-will-show').text($(this).val());
});

Revision: 14739
at June 10, 2009 03:42 by skrippendorf


Updated Code
$('input#ID').keyup(function(){
   $('div-where-the-text-would-show').text($(this).val());
});

Revision: 14738
at June 10, 2009 03:41 by skrippendorf


Updated Code
$('input#ID').keyup(function(){
	   $('div-where-the-text-would-show').text($(this).val());
	});

Revision: 14737
at June 10, 2009 03:40 by skrippendorf


Initial Code
	$('input#CityName').keyup(function(){
	   $('span.register-url').text($(this).val());
		$('.town-sign').text($(this).val());
	});

Initial URL


Initial Description
Text beim tippen wo anders anzeigen

Initial Title
Show input Text while tipping

Initial Tags
javascript, js, textmate, jquery, text

Initial Language
jQuery