This file is to be updated periodically from the Purdue Home Page. Pages that load this file need to have a div like the following where they want the footer to appear. They also need a script similar to the following (with the script tags properly delimited) to load this file. Note that the load is instructed to load from the div with class "footer". Also note that this solution requires both jQuery (load command) and Bootstrap (formating). [script] $(document).ready(function(){ var global_footer = "/static_resources/portal/html/global_footer.html .footer"; $("#global_footer").load(global_footer); }); [/script]