JS HTML Wrapper functions can wrapper up the string parameters for HTML context. For example,
sup("test") will return "<sup>test</sup>".
var str = "last:"; str.anchor("anchor1");
The above code will return: <a name="anchor1">last:</a>.
var str="test"; str.big();
The above code returns "<big>test</big>", will be showed as test.
var str="test"; str.b();
The above code returns "<b>test</b>", will be showed as test.
var str="test"; str.fontcolor("green");
The above code returns '<font color=green>test</font>', will be showed as test.
var str="test"; str.fontsize("5");
The above code returns '<font size=5>test</font>', will be showed as test.
var str="test"; str.italics();
The above code returns '<i>test</i>', will be showed as test.
var str="BMI Calculator"; str.link("http://www.endmemo.com/medical/bmi.php");
The above code returns '<a href="http://www.endmemo.com/medical/bmi.php">BMI Calculator</a>', and
will be showed as BMI Calculator.
var str="test"; str.small();
The above code returns "<small>test</small>", will be showed as test.
var str="test"; str.strike();
The above code returns "<strike>test</strike>", will be showed as test.
var str="test"; str.sub();
The above code returns "<sub>test</sub>", will be showed as test.
var str="test"; str.sup();
The above code returns "<sup>test</sup>", will be showed as test.