This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

date format on this support site

  • 2 replies
  • 1 has this problem
  • 11 views
  • Last reply by cor-el

more options

Any chance of changing the date format used on this support site from the (benighted) US format m/dd/yy to something less ambiguous please (you will know that Europe uses dd/mm/yy(yy) which leaves a lot of room for error eg for 1/2/2015 are we discussing the 1st of feb or the second of Jan) Lots of sane choices are possible Thanks

Any chance of changing the date format used on this support site from the (benighted) US format m/dd/yy to something less ambiguous please (you will know that Europe uses dd/mm/yy(yy) which leaves a lot of room for error eg for 1/2/2015 are we discussing the 1st of feb or the second of Jan) Lots of sane choices are possible Thanks

All Replies (2)

more options

Something like this is discussed in https://support.mozilla.org/en-US/forums/contributors

more options

See also:

This forum uses a datetime attribute that makes it possible to style the date and time any way you want. A possible bookmarklet:

javascript:(function(){var d=document,e=d.querySelectorAll('time[datetime]'),A,D,E,T,i;for(i=0;E=e[i];i++){D=new Date(E.getAttribute('datetime'));T=D.toLocaleString("en-GB");if(!/invalid/i.test(T)){E.innerHTML=T}}})()

See also:

javascript:(function(){var d=document,e=d.querySelectorAll('time[datetime]'),A,D,E,T,i;for(i=0;E=e[i];i++){D=new Date(E.getAttribute('datetime'));T=D.toLocaleString("en-GB",{weekday:"short",day:"numeric",month:"short",year:"numeric",hour12:false,hour:"numeric",minute:"numeric",second:"numeric"});if(!/invalid/i.test(T)){E.innerHTML=T}}})()

Modified by cor-el