Popular Posts
Tick Start tick Java Javascript .net Tick = 0 (GMT+0) 1970/01/01 00:00:00 1970/01/01 00:00:00 1601/01/01 00:00:00... Translating 2.0 <html> <head>     <title>Translation 2.0</title>     <meta http-equiv="content-type" content="text... ajax basic // 取得 XMLHttpRequest 的實體 function getXMLHttpRequest(){     /* Create a new XMLHttpRequest object to talk to the Web server */     var xmlHtt...
Stats
String.replaceAll()
String.prototype.replaceAll = function(oldValue, newValue) {
    return this.split(oldValue).join(newValue);
}