I'm having a little jquery code here, offered by a member of that site that I ended up finding, and I do not know which version of the library I should load and run the code of others. I can not comment on the response he gave to another user because of my reputation, what library should I add?
$(document).ready(function(){
$("#ckAll").click(function() { // minha chk que marcará as outras
if ($("#ckAll").prop("checked")) // se ela estiver marcada...
$(".chk").prop("checked", true); // as que estiverem nessa classe ".chk" tambem serão marcadas
else $(".chk").prop("checked", false); // se não, elas tambem serão desmarcadas
});