I receive information from an arrangement and I want that according to what I receive, the check that I have is activated, I have used several options and none of them works for me:
$("#inicio").prop("checked", true);
$('input[name="inicio"][value=' + info.inicioMes + ']').prop("checked", true);
document.getElementById("inicio").disabled = false;
$('input[name="inicio"]').prop("checked", true);
$("#inicio").attr("checked", "checked");
everything in javascript, thanks for your help.