Hi, I can't figure out why no tabs are appearing, it is simply an unordered list. I have verified the JS scripts are located where I specified. Here is my code
<html> <head> <script type="text/javascript" src="scripts/jquery.js"></script> <script type="text/javascript" src="scripts/lib/jquery.tabs.js"></ script> <script type="text/javascript"> // create AJAX tabs $('#container').tabs({ remote: true, onShow: function(clicked, shown, hidden) { alert( $('li', shown).size() ); } }); </script> </head> <body> <div id="container"><ul> <li><a href="draw_modules?tab_id=1">General</a></li> <li><a href="draw_modules?tab_id=2">Math</a></li> <li><a href="draw_modules?tab_id=4">Social Studies</a></li> <li><a href="draw_modules?tab_id=5">Reading</a></li> <li><a href="draw_modules?tab_id=6">Learning Management</a></li> <li><a href="draw_modules?tab_id=9">New Tab</a></li> </ul></div> </body> </html> Any ideas where I'm going wrong? Thanks, - Dave --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery (English)" group. To post to this group, send email to jquery-en@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/jquery-en?hl=en -~----------~----~----~----~------~----~------~--~---