Tag Archive: html


Unicode character 2026 – “Horizontal Ellipsis”

In Windows: Alt-0133

In Java: \u2026
Example:
String ellipsis = "\u2026";

In HTML: … or … or …
Example:
… or … or …

In Javascript: \u2026
Example:
var ellipsis = "\u2026";
alert(ellipsis);

Ricola log: \u2026
Example:
Ricola.log.debug("\u2026")
will output 11:31:08 DEBUG - …

Ricola showPleaseWait: any of the HTML entities: … or … or …
Example:
Ricola.page.showPleaseWait("Creating train documents…");

I’ve been playing with YSlow and WebsiteOptimization.com and I was wondering what would be the smallest page I could get. Could I score 100% and still have a nice page?

I started creating a Java servlet last night. This would just be an exercise. It would have no practical use.