Convenience function to append text intermixed with other children.
For example: div.addChildren("You can visit my website by ", new Link("mysite.com", "clicking here"), ".");
or div.addChildren("Hello, ", user.name, "!");
See also: appendHtml. This might be a bit simpler though because you don't have to think about escaping.
Convenience function to append text intermixed with other children. For example: div.addChildren("You can visit my website by ", new Link("mysite.com", "clicking here"), "."); or div.addChildren("Hello, ", user.name, "!"); See also: appendHtml. This might be a bit simpler though because you don't have to think about escaping.