You can use the :not()selector to move the negation to your selector.
$("#resultContainer,#approvalContainer,#createNewContainer")
.delegate(".jtable tbody td:not(.DeleteLicense)", "...", ...);
Note that the jQuery documentation recommends using a function .not()rather than a selector :not()in most cases, but I'm not sure if this is possible in this case.
, , .jtable tbody td delegate, if(!$(this).is(".DeleteLicense")) { ... } , .