jQuery UI tabs question

jQuery UI tabs question

Hi, the thing is simple: 

jQuery UI tabs is not loading javascript in ajax loaded content files, on Google Chrome, anybody knows why ??


  1.     <div id="tabs">
  2.         <ul>
  3.             <li><a href="file1.php" title="tittle"><span>Menu Option 1</span></a></li>
  4.             <li><a href="file2.php" title="tittle"><span>Menu Option 2</span></a></li>
  5.             <li><a href="file3.php" title="tittle"><span>Menu Option 3</span></a></li>            
  6.             ....
  7.         </ul>
  8.         <div id="tittle"></div>
  9.     </div>

The jQuery code, in an outside first .js file is:

  1. $("#tabs").tabs();

So, In FF and even IE it works fine as expected, the first content of the first and preloaded tab gets loaded, with it, the corresponding .js outside file gets loaded too, and swapping the tabs, it loads the content of each tab with the corresponding outside .js file of each of the selected content. But the thing is that in Google Chrome nothing of this works properly, not even the first one outisde .js file gets loaded, load the content of the "default" tab, but not it`s javascript file; and none of the following. ANYBODY KNOWS WHY ????
I've been struggling with this since a long time, but won't give up :-P

Cheers and thanks in advance