Well, Links in my panel should be loaded inside the current panel I must be doing something terribly wrong, but I really can't find what that is. I'm not really used to work with both js and ajax, so it could be something easy (sure hope so).
This code I've put in the head of my page: <script type="text/javascript"> $(function() { $("#tabs").tabs(); }); $('#tabs').tabs({ load: function(event, ui) { $('a', ui.panel).click(function() { $(ui.panel).load(this.href); return false; }); } }); </script> It contains the adjustment I found on the jquery website. I tried to remove the top part of the script, but then it does nothing. With above script included de tabs are shown properly, also the panels contain the data required. But when I click on a link inside the panel the page reloads and the part that should load in the panel is all I get. Can anyone help me out? Thanks, Jee