Hello. Thank you for contacting the Toolset support.
Its not clear what exactly you want. Can I have few screenshot that should help me to understand what exactly you want.
As I understand - when the form is loaded first time with the field "Date of Job posting", you want to display current date "March 12, 2025" by default - is that correct or you want something else?
Can you please try to add the following code to your form's JS box:
Edit your form in backend and try to add the following code to JS editor and save your form. Please delete the cache and check if this help you to resolve your issue.
The code provided populated into the field as this " Wed Mar 12 2025 12:42:39 GMT-0400 (Eastern Daylight Time)"
but since i needed it should be like this... "March 12, 2025". I modified the code a bit ad it works now.
Thanks
jQuery(window).bind("cred_form_ready", function() {
var now = new Date();
var options = { month: 'long', day: 'numeric', year: 'numeric' };
var formattedDate = now.toLocaleDateString('en-US', options);