this does not acount for time zones or weekends
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
<script type="text/javascript">
/*<![CDATA[*/
function Shipping(id){
var today=new Date();
var hours=today.getHours();
var day=today.getDay();
document.getElementById(id).innerHTML=(hours<13)?'orders completed in the next '+(13-hours)+' hour ship today':'orders completed in the next 21 hours ship during the next business day';
}
/*]]>*/
</script></head>
<body>
<span id="tst" ></span>
<script type="text/javascript">
/*<![CDATA[*/
Shipping('tst');
/*]]>*/
</script>
</body>
</html>
Bookmarks