How do I convert 07/26/2010 to a UNIX timestamp using Javascript?
07/26/2010
You can create a Date object, and call getTime on it:
Date
getTime
new Date(2010, 6, 26).getTime() / 1000