
Code:
- <style type="text/css">
- #bottom_content {
- padding: 10px;
- text-align: center;
- font-size: 14px;
- }
- </style>
- <div id="bottom_content">
- Html/Text Goes Here
- </div>
- <script type="text/javascript">
- <!--
- function move_to_bottom() {
- document.getElementById('bottomtext').appendChild(document.createElement('br'));
- document.getElementById('bottomtext').appendChild(document.getElementById('bottom_content'));
- }
- if(window.addEventListener) {
- window.addEventListener('load', move_to_bottom, false);
- } else if(window.attachEvent) {
- window.attachEvent('onload', move_to_bottom);
- } else {
- window.onload = function() { move_to_bottom(); }
- }
- //-->
- </script>