[Solved] document.write is killing page
as everybody suggested. document.write will clear everything from the DOM. the best way to write this would be to have a DIV in your HTML and set that div in your javascript code. here’s what your HTML should look like <div id=”page_message” style=”display: none;”></div> <div class=”countdown_out”> <div id=”countdown_title”>NFL Season Opener Countdown</div> <div class=”countdown_position”> <div class=”countdownBox”> … Read more