I'm a bit new to js/jQuery , so this could be a beginners error... What' I'm trying to do is just get a plain accordion setup that will work through multiple platforms.
FF3.5 - no problem. IE 8 - ??? it just explodes. No accordion functionality to speak of. The page I'm working on is here: http://www.moxdom.com/the-goods/ For js includes I have this: <script type="text/javascript" src="http://www.moxdom.com/wp-content/ themes/InterPhase/js/jquery-1.3.2.min.js"></script> <script type="text/javascript" src="http://www.moxdom.com/wp-content/ themes/InterPhase/js/jquery-ui-1.7.2.custom.min.js"></script> <script src="http://www.moxdom.com/wp-content/themes/InterPhase/js/ opengoods.js" type="text/javascript"></script> And for accordion I have this: <div id="accordion"> <h3><a href="#">First header</a><h3> <div>First content</div> <h3><a href="#">Second header</a><h3> <div>Second content</div> </div> and js is: jQuery(document).ready(function(){ jQuery('#accordion').accordion(); }); I'm really just making sure that I can get the demos working right first, before I get too crazy with extra features. This is in a Wordpress page, so I could have a conflict with another plugin/js, but I didn't see one. Can anyone see if I've done something wrong, or if there's something I need to change just for IE? Thanks for your time. Matt -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
