this statement in prototype.js (line 2457):
else element.innerHTML = content.stripScripts();
gives an error : "unknown runtime error" in IE
To solve this problem, just make below changes in your code in all js
Change the statement from
this.month_year_label.update(Date.months[m]);
to
this.month_year_label.update().insert(Date.months[m]);
only change is:
instead of using method "update", use "update().insert"
Set default index.html page in NGINX
-
Recently I setup Jekyll-Blog on nginx server which is pure html code. When
I tried to call url without index.html (http://domain.com/blog/) in path,
it wa...
8 years ago