html - How to add an additional hyperlink to Javascript tabify link? -


i using javascript create retained hover on effect , use tabs.

here example of doing here - http://jsfiddle.net/ku9ny/

what add link each of these tabs. user gets preview of page in tab , clicking on 1 of tabs take them full page.

i not sure if can done links taken tabs.

e.g.

<a href="#booking">bookings</a>  

can add additional linksome how or there javascript wizardry can implement?

many thanks!!

you can add onclick event on anchor tag , use window.location redirect

<a href="#booking" onclick="window.location='http://www.google.com'">bookings</a> 

hope helps.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -