I have a problem with my anchor tag.
For example I have:
<a href="#">abc</a>
Then output is abc (#)
.Whatever i write inside href attribute comes along with a tag.
Dont know what's wrong with the code.
Please help me out, thanks.
I have a problem with my anchor tag.
For example I have:
<a href="#">abc</a>
Then output is abc (#)
.Whatever i write inside href attribute comes along with a tag.
Dont know what's wrong with the code.
Please help me out, thanks.
Do you have something in your css along the lines of:
a:link:after {
content: " (" attr(href) ") ";
}
You might want to add a style block to the head of the document:
<style type="text/css">
a:after { content: ""; }
</style>
And see if that makes a difference.
Are you hand-coding the html, or is this generated by a template/cms?
Not sure what the problem you are having is. I copied that line of html into a file, named it test.html, and opened it with IE and Chrome. Both just have a link labeled abc on screen that links to "#".
What do you see when you just use that line in a file?
Are you using some sort of browser plugin that displays the url of links?