im using the standard jquery tabs 1.3.2 to load a list of bookmarks in each tab pane.
If a tab is clicked before the dom is ready the ajax page is loaded by itself. I don't want that to happen so how can I stop that behavior?
<ul id="tool-tabs" class="tabs clearfix">
<li class="ui-tabs-selected"><a href="#tools">Tools</a></li>
<li><a id="bookmarks" href="/ajax.bookmarks.php">Bookmarks</a></li>
<li><a id="favorites" href="/ajax.favorites.php">Favorites</a></li>
</ul>
If i click Bookmarks as the page loads i get the the ajax page loaded to /mysite/ajax.bookmarks.php which i don't want.
Thanks in advance.