Skip to content

Instantly share code, notes, and snippets.

@bjesus
Created August 27, 2014 10:13
Show Gist options
  • Save bjesus/267d827d09507f3d7110 to your computer and use it in GitHub Desktop.
Save bjesus/267d827d09507f3d7110 to your computer and use it in GitHub Desktop.
Keep inputs with the same name in sync (jQuery)
$("input[name]").bind("keyup paste", function() {
elm = $(this);
elm_name = elm.attr('name');
$('input[name='+elm_name+']').val( elm.val() )
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment