Skip to content

Instantly share code, notes, and snippets.

@shlomisas
Last active May 15, 2018 14:17
Show Gist options
  • Save shlomisas/1851d47549e3a1a7d843a17482373ed8 to your computer and use it in GitHub Desktop.
Save shlomisas/1851d47549e3a1a7d843a17482373ed8 to your computer and use it in GitHub Desktop.
js-browser-app-event-listener-example
$('#someButton').click(async evt => {
const userId = $(evt.target).attr('data-user-id');
const res = await axios.get(`/user/${userId}`);
// Assume that `render` function exists
render(res);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment