Hi everyone,<br><br>This is my first post to this list and I am hoping to get some help. Also I hope in the future I will be able to answer some questions to others. I am developing a web app in a Pharo 1.1 one-click distribution so it comes with Seaside 3.0. I am not able to make the JQueryUI tabs work in my app. I have added the JQDeploymentLibrary and JQUiDeploymentLibrary to this app and basically copied and pasted the tabswidget example (<a href="http://localhost:8080/tests/jquery-ui/tabswidget">http://localhost:8080/tests/jquery-ui/tabswidget</a> - <span class="signature">JQTabsFunctionalTest class</span>) into my app, but all I get is the unordered list with hiperlinks to the values of the &#39;tabNamesAndValues&#39; dictionary. The value of the last link is displayed below the list and the other two are displayed as soon as I click on the corresponding link. There are no Javascript errors when loading the page.  Hopefully you will be able to see what I get below, but most probably the unordered list and hyperlinks will be lost in conversion to ASCII:<br>
<br>AZJQTabsTest
<ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"><li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active"><a href="http://localhost:8080/AZJQTabsTest#ui-tabs-5">Three</a></li>
<li class="ui-state-default ui-corner-top"><a href="http://localhost:8080/AZJQTabsTest#ui-tabs-9">Two</a></li><li class="ui-state-default ui-corner-top"><a href="http://localhost:8080/AZJQTabsTest#ui-tabs-11">One</a></li>
</ul>
<div class="ui-tabs-panel ui-widget-content ui-corner-bottom" id="ui-tabs-5">Third tab value</div>
<br><br>What am I missing here? By the way, the tabswidget example works perfectly fine and I have developed another application in the same image which also uses JQueryUI tabs and those are working fine too.<br><br>The two methods that are used in my example are:<br>
<br>AZJQTabsTest&gt;&gt;renderContentOn: html<br>    html text: &#39;AZJQTabsTest&#39;.<br>html div<br>      script: html jQuery new tabs;<br>      with: [<br>         html unorderedList: [<br>            self tabNamesAndValues keysAndValuesDo: [ :name :description |<br>
               html listItem: [<br>                  html anchor<br>                     url: (html jQuery ajax<br>                        html: [ :h | h text: description ];<br>                        fullUrl);<br>                     with: name ] ] ] ]<br>
<br>AZJQTabsTest&gt;&gt;tabNamesAndValues<br>    ^Dictionary new<br>        at: &#39;One&#39; put: &#39;First tab value&#39;;<br>        at: &#39;Two&#39; put: &#39;Second tab value&#39;;<br>        at: &#39;Three&#39; put: &#39;Third tab value&#39;;<br>
        yourself<br><br>AZJQTabsTest is a subclass of WAComponent and answers &#39;true&#39; to canBeRoot.<br><br>Any ideas?<br><br>Thanks,<br><br>Alejandro<br>