I want when page loaded get timeStamp but I can't.
This is my code :
<!DOCTYPE html>
<html>
    <head>
    </head>
    <body>
        <p id = "x">time</p>
        <script src="jquery/jquery1.12.js"></script>
        <script>
            $(document).ready(function(event){
               $("#x").text(event.timeStamp);
            })
        </script>
    </body>
</html>
 
     
    