Tag Archives: day of week

How to Show/Hide a div based on day of the week with jQuery

JavaScritpt   <script type="text/javascript">         $(document).ready(function() {                 today=new Date()         thisDay=today.getDay()                 $("#sunday").hide();                 $("#monday").hide();                 $("#tuesday").hide();       [...]
Posted in JavaScript, jQuery | Also tagged , , , , , | Leave a comment