tags:

views:

19

answers:

1

Markup works fine if I pull the code outside my app and test it, however, once its inside my app, the last item in my accordion will open onclick, but not close.

A: 

Hard to tell based on the as far given information. You may want to check if the returned HTML is syntactically valid and syntactically suits in the place where it is been inserted. E.g. are all tags correctly nested and opened/closed? That is namely a pretty common cause of those kind of problems.

BalusC
Thanks for the tip on nesting. I had an unclosed <i> tag which was the culprit!
Scott B
You're welcome.
BalusC