我需要在时间变为00.00时重定向页面[关闭]

I need to wish a birthday to my friend and so I plan to tell my friend to open a webpage @ 11.55 and when time becomes 12.00 I need to automatically redirect my friend's page to my greeting page and help me to do the task

by using javascript into the friend's page

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
    <script type="text/javascript">
    function greetings(){
      var now =new Date();
      if (now.getHours()===0 && now.getMinutes()===0) window.location.href='http://google.com';
    }
    setInterval(greetings,10000);
    </script>
  </head>
  <body>
  </body>
</html>