Archive for April 2010

unknown runtime error in prototype.js Line: 2457

Thursday, April 15, 2010 · Posted in

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"

Powered by Blogger.