Ui Tabs and middle click

Ui Tabs and middle click

Hi,

I am using ui tabs in non-ajax mode.
For a unique tab I am following this method (http://jqueryui.com/demos/tabs/#...follow_a_tab.27s_URL_instead_of_loading_its_content_via_ajax )to follow an url. It works fine.

But if I click on this tab with the middle click (scroll click) of my mouse, this method doesn't work : a new browser tab is opened, and an Ajax request (GET) is sent to load the target instead of follow the URL.

In my case, I'd want a middle click open my anchor url in a new window.
Thanks for your ideas.

Cyril

My html looks like that :
  1. <ul>
  2.     <li>
  3.       <a href="#tab1">Tab1</a>
  4.     </li>
  5.     <li>
  6.       <a href="myUrl.html">Follow this url</a>
  7.     </li>
  8. </ul>
  9. <div id="#tab1">
  10. ...
  11. </div>