Skip to content

Instantly share code, notes, and snippets.

@TheCire
Last active February 8, 2016 09:28
Show Gist options
  • Save TheCire/aa038d12424e50fd682e to your computer and use it in GitHub Desktop.
Save TheCire/aa038d12424e50fd682e to your computer and use it in GitHub Desktop.
<button type="button" class="btn btn-default" onclick="setText(this, $('pf'));">Mr.</button>
<button type="button" class="btn btn-default" onclick="$('#pf').val($(this).html());">Mrs.</button>
@TheCire
Copy link
Author

TheCire commented Feb 8, 2016

function setText(source, target) {
    target.val(source);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment