hi to every body!!!!!!!!!!!! I am developing a web application.the web application can be divided into three parts. The first part is regarding to head and the second part is regarding to the vertical tabs.Other part is regarding display information about the vertical tags. My problem is when i click on vertical tag. The information regarding to vertical tag display in new window could u please help me. I write the fallowing code (the code must be in html)
Are you saying that the "vertical tags" are opening in new windows/tabs and that you don't want them to? If not, could you please explain a bit more what the issue is and/or you're trying to do?
Side note: you should wrap blocks of code in <pre><code> ... </code></pre> tags, otherwise the html will be parsed like it was above.
Example:
<body> <h1>Something</h1> <h2>Blah</h2> <p>This is an example. Notice how the HTML doesn't get parsed in this box.</p> </body>
If you are using iframes, you can specify the target attribute in the (opening) <a> tags and set the value to the id* of the iframe. For example, the following link: <a href="/somepage.html/" target="blah">Some Page</a> would open "somepage.html" in an iframe with an id of "blah", such as <iframe src="about:blank" id="blah"></iframe>
Either show us a link to your page or, alternatively, as krysak4ever said, create it in CodePen
I am developing a web application.the web application can be divided into three parts. The first part is regarding to head and the second part is regarding to the vertical tabs.Other part is regarding display information about the vertical tags. My problem is when i click on vertical tag. The information regarding to vertical tag display in new window could u please help me. I write the fallowing code (the code must be in html)
Html
Css
could u please help me
Side note: you should wrap blocks of code in <pre><code> ... </code></pre> tags, otherwise the html will be parsed like it was above.
Example:
<a href="/somepage.html/" target="blah">Some Page</a>would open "somepage.html" in an iframe with an id of "blah", such as<iframe src="about:blank" id="blah"></iframe>*Or name, but id is recommended.