Create a Hidden Link in Html
Submitted by jitendramcu on Wednesday, November 4, 2009 - 19:52.
There are three way to do this.
1) <a href="/error.jpeg" style="display:none">Error</a>
In this case Link will not be visible on the page and wouldnot be work.
2) <a href="error.jpeg" style="visibility:hidden">Error</a>
In this case Link will not be visible on the page and wouldnot be work.
3) <a href="error.jpeg" style="text-decoration:none;color:White">Error</a>
In this case Link will be shown on the page but it will work.Based on some condtion we can use mouseover,mouseout event to display other information.
Add new comment
- Add new comment
- 110 views