Hey, I have been pulling my hair out with this error I am having on this site.
I am getting the dreaded Object expected
error on line 1, character 21 in
We fixed the "Object expected" error in IE, so to answer the question in your comments:
The problem is in your HTML.
You have this HTML, once for each tab:
<div class='tab' id='introduction'>
<h2 id='introduction'>Introduction</h2>
</div>
<div class='body' id='introduction' style='display:block'>
The problem is that you're specifying two elements with id='introduction'
.
For various reasons, you should not do that:
Line 37, Column 27: Duplicate ID introduction.
Line 36, Column 39: The first occurrence of ID introduction was here.
If I change it to (for example):
<div class='tab' id='introduction'>
<h2 id='introduction'>Introduction</h2>
</div>
<div class='introduction body' style='display:block'>
(remember to change all four instances in the same way)
And if I change your JS to this (for example), it works:
// Show selected
Spark('.' + currentTab)