/ Published in: JavaScript
// Changes the innerHTML of the first arg (object ID) into the secong arg (string)
Expand |
Embed | Plain Text
function changeInnerHtml() { var args=changeInnerHtml.arguments; if ((obj=MM_findObj(args[0])) != null) { obj.innerHTML = args[1]; } }
You need to login to post a comment.
