Question

I have seen many web applications which contains single web window with many links. On clicking the links concerned form gets open as new tab in the same web page of the application. So my concern is how to get that?

How to get the link open as new tab and later can be closed in the same window?

Was it helpful?

Solution 2

Here's one example that may help you get on your way to add dynamic tabs:

http://www.jeasyui.com/tutorial/layout/tabs2.php

I'm sure there are others.

OTHER TIPS

This can be done using target option

<a href="http://www.facebook.com" target="_blank">Visit facebook </a>

There are many option for this.

  1. _blank Opens the linked document in a new window or tab.
  2. _self Opens the linked document in the same frame as it was clicked (this is default).
  3. _parent Opens the linked document in the parent frame.
  4. _top Opens the linked document in the full body of the window.
  5. framename Opens the linked document in a named frame.
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top