Misc Now
# jQuery.now() Method
[jQuery Misc Methods](#)
## Example
Returns the Unix timestamp of the current time
$(function(){document.body.innerHTML = $.now(); })
[Try it Β»](#)
* * *
## Definition and Usage
The $.now() function returns the number of milliseconds elapsed since midnight January 1, 1970.
**Note: This method does not accept any parameters.** This function works similarly to new Date().getTime().
* * *
## Syntax
_$_.now( )
[jQuery Misc Methods](#)
YouTip