Weird IE JavaScript Problem - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T02:40:40Zhttp://stackoverflow.com/feeds/question/326778http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/326778/weird-ie-javascript-problem0Weird IE JavaScript ProblemChris2008-11-28T22:12:56Z2008-11-28T23:03:36Z
<p>OK,</p>
<p>Here is my problem, I have a master page with a HEAD section that contains my JS includes. I have one JS include </p>
<pre><code><script src="Includes/js/browser.js" language="javascript" type="text/javascript"></script>
</code></pre>
<p>In my page i consume it like this:</p>
<pre><code><body>
<form id="form1" runat="server">
<div>
....
<script type="text/javascript">registerBookmarkButton();</script>
....
</div>
</form>
</body>
</code></pre>
<p>And i get this error:</p>
<pre><code>Line: 216
Error: Object expected
</code></pre>
<p>Please tell me i just missed something and it's a stupid mistake</p>
http://stackoverflow.com/questions/326778/weird-ie-javascript-problem/326791#3267912Answer by Vilx- for Weird IE JavaScript ProblemVilx-2008-11-28T22:17:42Z2008-11-28T22:17:42Z<p>As you wish.</p>
<blockquote>
<p>You just missed something and it's a stupid mistake.</p>
</blockquote>
<p>:)</p>
<p>That being said, I'd try to find out which file it is that has the faulty line 216. Perhaps it's the browser.js file? Other possibilities include:<ul>
<li>You messed up the URL and the file isn't loaded;</li>
<li>The function depends on the DOM to be completely loaded, but it's called before the relevant elements are created (most JS should be done after the onload event under normal circumstances).</li>
</ul></p>
http://stackoverflow.com/questions/326778/weird-ie-javascript-problem/326812#3268121Answer by Mark Renouf for Weird IE JavaScript ProblemMark Renouf2008-11-28T22:31:33Z2008-11-28T22:31:33Z<p>If you can use Firefox, I would highly recommend installing and enabling the Firebug addon.</p>
<p>Otherwise, see some of the following for tools that might help:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/3404/javascript-troubleshooting-tools-in-ie">Javascript troubleshooting tools in IE</a></li>
<li><a href="http://stackoverflow.com/questions/179054/is-there-any-good-or-reliable-way-to-figure-out-where-a-javascript-error-is-usi">Is there any good or reliable way to figure out where a JavaScript error is using only an Internet Explorer error message?</a> </li>
<li><a href="http://stackoverflow.com/questions/313186/what-is-the-best-development-add-on-for-browsers-closed">What is the Best Development “add on” for Browsers [closed]</a></li>
<li><a href="http://stackoverflow.com/questions/170164/debugging-javascript-in-ie">Debugging javascript in IE?</a></li>
</ul>
http://stackoverflow.com/questions/326778/weird-ie-javascript-problem/326845#3268450Answer by Vineet Reynolds for Weird IE JavaScript ProblemVineet Reynolds2008-11-28T22:48:25Z2008-11-28T22:48:25Z<p>The "Object expected" error occurs when the browser's script engine was expecting to find an object, but was unable to do so. This usually occurs when you try to make a function call, but the function itself is unavailable to the script engine, presumably because you mistyped the function name when calling it.</p>
<p>To successfully debug this error, you must first determine the instruction at the line number reported in the error. This cannot be done by browsing through all the source files, unless you have some psychic debugging powers. It is recommended that the exception be caught inside a JavaScript debugger.
If you are debugging this under MS IE, you might want to install Microsoft Script Engine which can be installed with MS Office, or the poor man's Microsoft Script Debugger. For Firefox, there are the excellent Firebug and Venkman extensions. <a href="http://www.jonathanboutelle.com/mt/archives/2006/01/howto_debug_jav.html" rel="nofollow">Jonathan Boutelle's blog post</a> on debugging JavaScript in IE seems like a must read.</p>
http://stackoverflow.com/questions/326778/weird-ie-javascript-problem/326854#3268540Answer by Gene T for Weird IE JavaScript ProblemGene T2008-11-28T22:53:15Z2008-11-28T23:03:36Z<p>check if youre using a keyword as an identifier in yoru code</p>
<p><hr /></p>
<p><a href="http://mattsnider.com/languages/javascript/reserved-words-in-javascript/" rel="nofollow">http://mattsnider.com/languages/javascript/reserved-words-in-javascript/</a></p>
<p><a href="http://bytes.com/groups/javascript/424640-error-object-expected" rel="nofollow">http://bytes.com/groups/javascript/424640-error-object-expected</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/0779sbks.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/0779sbks.aspx</a></p>
http://stackoverflow.com/questions/326778/weird-ie-javascript-problem/326866#3268660Answer by Ates Goral for Weird IE JavaScript ProblemAtes Goral2008-11-28T23:03:12Z2008-11-28T23:03:12Z<ol>
<li>Try running your code through <a href="http://www.jslint.com/" rel="nofollow">JSLint</a>.</li>
<li>Add <code>alert()</code> calls here and there to narrow down the error to a particular location.</li>
</ol>