Skip to content

Instantly share code, notes, and snippets.

@cyberfly
Last active June 9, 2021 07:59
Show Gist options
  • Save cyberfly/ecd1e96b9ea21ce59d2db790906611d6 to your computer and use it in GitHub Desktop.
Save cyberfly/ecd1e96b9ea21ce59d2db790906611d6 to your computer and use it in GitHub Desktop.
document.querySelector('.btn-create').addEventListener('click', function (e) {
getModalContent(e, this);
});
// test
var edit_modal_btn_list = document.querySelectorAll('.btn-edit');
edit_modal_btn_list.forEach(function (edit_btn, index) {
edit_btn.addEventListener('click', function (e) {
getModalContent(e, this);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment