This is probably something easy, but I\'m a bit confused how to do this. How can I, using JavaScript, parse only the time from the following ISO 8601 date string:
This is so called ISO 8601 format. Mochikit comes with a function to parse it,
http://mochikit.com/doc/html/MochiKit/DateTime.html
You can get a Date object like this,
timestamp = isoTimestamp("2009-12-06T17:10:00");
Just copy the function if you don't want use Mochikit.