this._form._initialAction=this._form.action is null or not a
Posted: 11/4/2009 11:42:37 AM
By: Comfortably Anonymous
Times Read: 1,923
0 Dislikes: 0
Topic: Programming: Web Applications

This annoying error is surprisingly easy to fix. Most of the time, it's caused by using the Script tag "incorrectly" (Which seems correct in all other situations, but does not work in this case.):

You have probably declared a JavaScript include file using the following syntax (With no "end script" tag):

<script type="text/ecmascript" src="SomeFile.js"/>

The fix is surprisingly easy, even if it doesn't fully make sense. (Apparently it has something to do with the more esoteric rules of the Document Object Model)

<script type="text/ecmascript" src="SomeFile.js">< /script>

Usually at this point, the error goes away. :)

Rating: (You must be logged in to vote)