diff --git a/docs.html b/docs.html index b950bff3..0deeaa2c 100644 --- a/docs.html +++ b/docs.html @@ -116,6 +116,8 @@
URI.iso8859() tells URI.js to use the older escape/unescape methods, for backwards compatibility with older platforms.
+URI.iso8859();
+
+var uri = new URI("http://example.org/foo/æ.html");
+// http://example.org/foo/%E6.html
+
+ URI.unicode() restores the default unicode-encoded URLs.
+URI.unicode();
+
+var uri = new URI("http://example.org/foo/æ.html");
+// http://example.org/foo/%C3%A6.html
+