Answered
Convert AS3 'setTextFormat' to Javascript.
In Actionscript 3 I could format the text of parts of a text field.
myTextField.setTextFormat(myTextFormat, 3, 6);
How can I do this with Javascript?
I am using jQuery:
$("#myTextField").css('font-size', "20px");
