Would like to find all instances of a MySQL style date or date/time (YYYY-MM-DD or YYYY-MM-DD HH:MM:SS) on an html page using javascript (or jquery if practical) and replace each with a nicely formatted string (like: October 5th, 2010). Looking for the best approach.
|
|
|||||||||||||||
|
|
Do it in php is the correct answer but you don't want to do that. So... Try this toolkit: http://www.javascripttoolbox.com/lib/date/examples.php Put in a date in the 'parsing' box and use yyyy-MM-dd for the format, that should give you what you are after, there on it is probably best you read the instructions. Oh, and you'll be needing jQuery .each to iterate over whatever your date class is going to be. Or see this post if you don't have classes setup: |
|||
|
|
@phirschybar this person needed the same thing done and accepted an answer linking him to another site where he found the answer by using a custom created date function. Just get the source - add it in your How can I convert string to datetime with format specification in JavaScript? Hopefully this helps! |
|||
|
|