Skip to content

Instantly share code, notes, and snippets.

@askehansen
Last active December 17, 2015 04:49
Show Gist options
  • Save askehansen/5553704 to your computer and use it in GitHub Desktop.
Save askehansen/5553704 to your computer and use it in GitHub Desktop.
postnummer jquery
$("input#postnummer").on("keyup", function() {
$.get("//postnr.herokuapp.com/city/" + $(this).val(), function(result) {
$("input#by").val(result);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment