How to check a category checkbox using JavaScript

This solved it:

jQuery(document).ready(function() {
  jQuery( '#in-category-43' ).prop('checked', true);
});