toggleall.js 303 B

12345678910
  1. $(document).ready(function(){
  2. $("#allow-all-engines").click(function() {
  3. $(".onoffswitch-checkbox").each(function() { this.checked = false;});
  4. });
  5. $("#disable-all-engines").click(function() {
  6. $(".onoffswitch-checkbox").each(function() { this.checked = true;});
  7. });
  8. });