Skip to content

Instantly share code, notes, and snippets.

@nicekiwi
Created May 20, 2015 05:56
Show Gist options
  • Save nicekiwi/b09965135a30736f600c to your computer and use it in GitHub Desktop.
Save nicekiwi/b09965135a30736f600c to your computer and use it in GitHub Desktop.
Pass button data to modal
var lastClickedEl;
$('button').on('click', function() {
lastClickedEl = $(this);
});
$('modal').on('shown.bs.modal', function(){
var userId = lastClickedEl.attr('data-user_id');
..
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment