[SOLVED] Accordion

[SOLVED] Accordion

I want to put inside each section of my accordion one file html (one for each header). I set 

  1. $( "#accordion" ).accordion({header: "h3", collapsible: true});

and the body of my html file is typically like the following:

  1. <BODY LANG="it-IT" TEXT="#000000" LINK="#0000ff" DIR="LTR">
  2. <P CLASS="western" ALIGN=JUSTIFY STYLE="margin-bottom: 0cm; line-height: 115%">
  3. <FONT FACE="Times New Roman, serif">
  4. Bla Bla Bla Bla .... .... ....  Bla Bla.</FONT></P>
  5. <P CLASS="western" ALIGN=JUSTIFY STYLE="margin-bottom: 0cm; line-height: 115%">
  6. <FONT FACE="Times New Roman, serif">Bla2 Bla2 Bla2 ... ... ... 

Everything from line 1 to line 4 is inserted inside my header in the right way. But from line 5 to the end, even there isn't <h3> header in the html, in inserted out of the header like simple text.....

UPDATE: It simple: just put all contents of the html file inside a <div> ... </div>!!! :-) hope this could help....