How to change date format in jquery

I get the date in 2012-01-15T13:08:33+0000How can I change it in other formats. Is there a built-in jquery or javascript function.

+3
source share
2 answers

First, parse the date, and then format it.

+4
source

Use the jQuery dateFormat plugin . You need to load it explicitly.

+1
source

All Articles