0

I'm currently working with Spry Tabbed Panels in a Site. I've nested a set of panels inside of another set of panels. My problem is that 2 out of 4 tabs in the first panel don't work. And two out of four tabs in the nested set of panels don't work.

Here is a link to the site for an example: http://emilymagnuson.com/trustbank/index.html

Cœur
  • 37,241
  • 25
  • 195
  • 267
Emily Magnuson
  • 165
  • 2
  • 3
  • 14

1 Answers1

1

Your HTML structure looks broken. You need to fix that if you want spry to work properly. For example on line 336 of the source code there is an extra </div> closing tag. I would review your code and make sure that all your HTML elements are placed properly.

tlaverdure
  • 522
  • 7
  • 18
  • Okay, I went through the code and line 62 was marked as invalid, and I have no idea why. I remember putting it there. And it has a purpose and it has a closing tag, so I'm confused why it's marked that way. do you have any idea? – Emily Magnuson Jan 23 '13 at 18:21
  • There was a lot of error. You had a form tag that wasn't closed and many of your panels were not placed where they needed to be in order to work properly. Here is a working example of what you are trying to accomplish: [Working Example](http://jsfiddle.net/tlaverdure/PKUPr/embedded/result/). You can copy and paste the code. Please mark this answer as the correct one if it answers the question. – tlaverdure Jan 23 '13 at 20:57
  • Thank you so much! An extra div tag was the culprit. But I will still go through the code and look for that Form end tag. – Emily Magnuson Jan 24 '13 at 16:59
  • I think that form tag is closed. – Emily Magnuson Jan 25 '13 at 16:41