Change event is fired when the value is changed by users interaction on page and not when value is modified using code.
Here you need to use .change()
or .trigger("change")
after changing the property:
$('input[type="checkbox"][name="something"]').prop("checked", false).change();
Working Demo