In order for jQuery to access Ninja Tables, the corresponding script must be loaded late.
var formExists = setInterval(function() {
if ($(".nf-form-cont").length) {
$("#nf-field-1").click(function(e) {
console.log("click!");
}
clearInterval(formExists);
}
}, 100);