<input> Change Events
by SLaks
HTML
Type: <input /><br />
Echo: <span></span><br /><br />
Drag me!
JavaScript
$('input').bind('input propertychange', function() {
$('span').text(this.value);
});
by SLaks
Type: <input /><br />
Echo: <span></span><br /><br />
Drag me!
$('input').bind('input propertychange', function() {
$('span').text(this.value);
});