Well, take a look at www.creade.biz
Now click o A4 ITEM and JQuery to see slideToggle in action. It works fine in IE but crash in Firefox. If you try to close the opene A4 ITEM It will reopen. How I can fix It?
Thanx for your help!
Well, take a look at www.creade.biz
Now click o A4 ITEM and JQuery to see slideToggle in action. It works fine in IE but crash in Firefox. If you try to close the opene A4 ITEM It will reopen. How I can fix It?
Thanx for your help!
Your XHTML document has a whole bunch of validation errors:
<div>
tag as a direct child of a <ul>
tag.<li>
tags without a <ul>
(or <ol>
) tag as its direct parent.<p>
tags as children for <span>
tags.If you change <div class="collSub">
into <li class="collSub">
, start a new <ul>
tag for the nested list elements under the A4 item, and change all of your <p>
tags into <span>
tags, it'll work out for you.
Also, for future reference, you can check the markup validity of your XHTML documents by using The W3C Markup Validation Service.