topical media & game development
professional-ria-05-console.js / js
function log(message) {
message_list = document.getElementById("debugging_messages");
if (message_list != null) {
log_message = document.createTextNode(message);
log_list_item = document.createElement('li');
log_list_item.appendChild(log_message);
message_list.appendChild(log_list_item);
}
}
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.