0
If the idea is to check if the check in is marked, the query should be done as below:
var checkado = $("#chkAguardandoEnvio").prop("checked");
If it is known whether the check in is enabled for marking, use this other:
var habilitado = $("#chkAguardandoEnvio").attr("disabled") != undefined;