corral

Untitled

Sep 26th, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1.  
  2. var d = new Date()
  3. var month = new Array();
  4. month[0] = "January";
  5. month[1] = "February";
  6. month[2] = "March";
  7. month[3] = "April";
  8. month[4] = "May";
  9. month[5] = "June";
  10. month[6] = "July";
  11. month[7] = "August";
  12. month[8] = "September";
  13. month[9] = "October";
  14. month[10] = "November";
  15. month[11] = "December";
  16.  
  17. $.ajax({
  18. type: "POST",
  19.  
  20. data: {message:"/me : ✔ Seen " + d.getHours() + ":" + d.getMinutes() + ":"+ d.getSeconds() + " PHT " + d.getDay() + " " + month[d.getMonth()] + ", " + d.getFullYear()}
  21. });
Advertisement
Add Comment
Please, Sign In to add comment