I know what SSL is as a concept and what it does, but I don't understand how to integrate it for my own use. I've seen some places that sell it, and I don't want to buy something if I don't actually...
I've got image files named 0-0, 0-1, 0-2 and so on up to a certain point, and I want to load each file until it can't find another, hence the jquery ajax error. At the moment, this works in firefox...
I just noticed the comparison is correct. My old data was getting modified, so when the new data was coming in, it was getting compared to the modified data.
I would say replace the GMT with UTC using a regexp because what it boils down to is that GMT is just milliseconds difference from UTC, which I don't really find important when it comes to web...
function parseDateFormat(input, format) {
format = format || 'YYYY-MM-DD hh-mm-ss'; // default format
var parts = input.match(/(\d+)/g),
i = 0, fmt =...
I still get invalid date with new Date("2011-09-03 02:23:24".replace(" ", "T")) with Safari. I realize this works in firefox, but I'm looking for a cross-browser solution