Keep Text Inputs in Sync

Chris Coyier on
var $inputs = $(".example-input"); $inputs.keyup(function() { $inputs.val($(this).val()); });

Example