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 :
- <ul>
- <li>
- <a href="#tab1">Tab1</a>
- </li>
- <li>
- <a href="myUrl.html">Follow this url</a>
- </li>
- </ul>
- <div id="#tab1">
- ...
- </div>