Skip to content

Instantly share code, notes, and snippets.

@greggb
Created December 12, 2011 18:39
Show Gist options
  • Save greggb/1468496 to your computer and use it in GitHub Desktop.
Save greggb/1468496 to your computer and use it in GitHub Desktop.
Swap two divs if between two times on two days
$(document).ready(function(){
$("#maint").hide();
var d=new Date();
hour = d.getHours();
today = d.getDay();
if((today===5 && hour >= 20)||(today===6 && hour < 6)){
$("#apply").hide();
$("#maint").show();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment