I am using website builder called \'clickfunnels\', and they don\'t support feature that would allow me to display current date. But, I can add custom html to it.
I was
Use Date::toLocaleDateString.
new Date().toLocaleDateString() = "9/13/2015"
You don't need to set innerHTML, just by writing
will work.
P.S.
new Date().toDateString() = "Sun Sep 13 2015"