79246710

Date: 2024-12-03 08:00:04
Score: 1
Natty:
Report link

Here is posibe solution for your query.. hopefully it can help you.

enter image description here

$(document).ready(function () {
        const time = new Date();
        const options = { month: 'short', day: 'numeric', year: 'numeric' };
        const formattedDate = time.toLocaleDateString('en-US', options); 
        $(".post-time p").text(formattedDate); });
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<div class="post-time">
    <p></p>
</div>

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Taqi Raza Khan