Help bolding certain variables within text
I have certain input fields within my text that I want bolded and need help!
Here is the segment of my javascript code for my HTML5 canvas document that I need help with:
this.savings.text = "If you saved <b>" + investInput + "%</b> for retirement, only about <b>$" + weeklyDeduct + "</b> would come out of your weekly pay.";
I want " + investInput + " and " + weeklyDeduct + " bolded but the <b> tag does not work and shows up in the actual text instead.
Any suggestions?
