69
69
* it will automatically be URL-encoded.
70
70
* \param onclick Optional string. Will be set as the "onclick" attribute
72
75
* \return DOM Element object.
74
function dom_make_link_elem(tagname, text, title, href, onclick)
77
function dom_make_link_elem(tagname, text, title, href, onclick, dontencode)
76
79
if (text == null) text = "";
77
80
if (href == null) href = "";
78
81
var elem = document.createElement(tagname);
79
82
var link = document.createElement("a");
82
87
link.setAttribute("title", title);