I have this JS in my website to display a custom text message, and the message has a hyperlink. However, it opens it in the current window and I want to make sure it opens in a new tab. I cannot figure out how to achieve that in these circumstances.
var conceptName = jQuery('#pa_analise_objeto').find(":selected").val();
if(conceptName=='sem_revisao') {
jQuery("#displayCustomMsg").html("<p>The model will be <br/>printed automatically <a href='https://LINK.HERE.COM' style='color: #202020;'><u>verificação manual</u></a></p>");
}