Making Words of an Alert Bold

Jpeugh
Kilo Explorer

I have the following Client Script that populates an alert every time a Priority one ticket is submitted. But i was wondering how i can make certain words of the alert bold while others are not. The phrase i would liek to bold are "impacting entire departments or geographic locations"


function onChange(control, oldValue, newValue, isLoading) {

var pri = newValue;
if (pri == 1){
alert ('Note: Priority 1 tickets are Critical - Urgrent problems or outages impacting entire departments or geographic locations, with mission critical impact.');
}
}

2 REPLIES 2

Mark Stanger
Giga Sage

This isn't possible with a javascript alert since they don't accept any HTML input.


adiddigi
Tera Guru

If making them bold is Very much required, then Try writing a UI Page and call it in the place of the alert.You can make them BOLD(give what ever styles you want to give)