Inconsistent behavior of toLocaleString() in different browser

The short answer is no. toLocaleString can be implemented however the developers wish. What your question implies is that Chrome outputs the string you want. If you would like to output that format consistently you’ll need to use a separate library – like DateJS. To do this with DateJS will need some standard format specifiers … Read more

Effective maximum mailto: body lengths

The standard doesn’t define a maximum length, leaving implementation up to browsers and mail clients (See IETF RFC 2368). Microsoft products do have set limits: IE GET limit is 2,083 http://support.microsoft.com/kb/208427 Outlook express: 456 characters http://support.microsoft.com/kb/q182985/ Other browsers are likely to work up to lengths beyond that of a reasonable email body. The iPhone doesn’t … Read more