Skip to content

Instantly share code, notes, and snippets.

@igorsgm
Created December 3, 2016 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igorsgm/940b6ed743211acda3994d7a63629efa to your computer and use it in GitHub Desktop.
Save igorsgm/940b6ed743211acda3994d7a63629efa to your computer and use it in GitHub Desktop.
Ao clickar no checkbox #check_all irá marcar todos os checkboxes da table mais próxima
/**
* Ao clickar no checkbox #check_all irá marcar todos os checkboxes da table mais próxima
*/
js(document).on('click', '#check_all', function (e) {
var table = js(e.target).closest('table');
js('td input:checkbox', table).prop('checked', this.checked);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment