function Hours(object_id) { this.div_id = object_id; this.content = ''; } Hours.prototype.render = function() { var content_div = document.getElementById(this.div_id); if (content_div != null) { content_div.innerHTML = this.content; } } var HoursWidget= new Hours('branch-listing'); HoursWidget.content = '
MD Anderson LibraryClosed
Special CollectionsClosed
Architecture, Design, & Art LibraryClosed
Music LibraryClosed
Health Sciences LibraryClosed
'; HoursWidget.render();