VOOZH about

URL: https://www.geeksforgeeks.org/jquery/how-to-use-moment-js-to-change-date-format-in-jquery/

⇱ How to use moment.js to change date format in jQuery ? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to use moment.js to change date format in jQuery ?

Last Updated : 24 Sep, 2024

Using Moment.js to change date format in jQuery involves importing the Moment.js library and utilizing its functions to parse, manipulate, and format dates. You can easily convert dates into various formats by calling moment(date).format(desiredFormat) to display the date in your preferred format.

moment() Function: The moment() function is used to create a moment from a string.

Syntax:

moment(String);

Parameter: It accepts a String as a parameter

Return Value: It returns the moment object.

format() Function: The moment().format() function is used to format the date. The format can be provided in string form which is passed as a parameter to this method.

Syntax:

moment().format(String);

Parameters: This function accepts a single parameter of string type, which defines the format.

Return Value: This function returns the date.

CDN Links:

<script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.min.js"></script>   
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>  
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css">

Approach:

  • Firstly, add the jQuery, Moment.js, and Bootstrap CDN link to the script or download them from your local machine.
  • Create an input for the date and button to submit.
  • Now use the moment() method to convert the date into a moment object.
  • Use the format() method to change the format of the date, following is the syntax for changing the format of the date to 'DD-MM-YYYY'.
moment($("#date_val").val()).format('DD-MM-YYYY'); 
  • Add some styling to the page using the bootstrap.

Formatting tokens for dates:

TokenDescriptionExample
YYYY4-digit year 2022
YY2-digit year 22
MMMMFull-length month March
MMM3 character monthMar
MMThe month of the year, zero-padded03
MThe month of the year 3
DDDay of the month, zero-padded02
DDay of the month 2
DoDay of the month with numeric ordinal contraction2nd

Example: In this example we use Moment.js and jQuery to convert and display a selected date in three different formats. When the button is clicked, the date is reformatted into various patterns and displayed dynamically.

Output:

Comment

Explore