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
Post a Comment