Last active
May 15, 2018 14:17
-
-
Save shlomisas/1851d47549e3a1a7d843a17482373ed8 to your computer and use it in GitHub Desktop.
js-browser-app-event-listener-example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#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