Tabs: mouseover: tab title links linking to other pages? Is that possible?
I am using Tabs it works fine but I would like to have the ability to use the tabs title links to bring users to other pages. I'm using the hover to preview the page content but still want a user's click to take them to that page.
Is that possible here is my piece of code:
- <script type="text/javascript">
- $(function() {
- $("#tabs").tabs({
- event: 'mouseover'
- });
- });
- </script>
- </head>
- <body>
- <div id="tabs">
- <div class="menu">
- <ul>
- <li><a href="#tabs-1" title="Journal">Journal</a></li>
- <li><a href="#tabs-2" title="WebTV">WebTV</a></li>
- <li><a href="#tabs-3" title="Photos">Photos</a></li>
- <li><a href="#tabs-4" title="Calendrier">Calendrier</a></li>
- </ul>
- </div>
-
- <div id="tabs-1" class="tabs-content">
- <p>103 publications et 1302 commentaires.</p>
- </div>
- <div id="tabs-2" class="tabs-content">
- <p>4 émissions totalisant 23 webépisodes.</p>
- </div>
- <div id="tabs-3" class="tabs-content">
- <p>43 albums et 1245 photos.</p>
- </div>
- <div id="tabs-4" class="tabs-content">
- <p>14 événements à venir et 42 événements passés.</p>
- </div>
- </div>
Many thanks for your precious time and help.