Categories
Friends
Links
Tag Archives: hide
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 date, day of week, getDay, JavaScript, jQuery, show Leave a comment
How to display fields using select drop down and jQuery