Why this html code not work in firefox ? when i clicked the button link not work but google chrome work fine.
<button>
<a style="text-decoration:none" href="index.php?cmd=BlogAddForm">Add Note</a>
</button>
Why this html code not work in firefox ? when i clicked the button link not work but google chrome work fine.
<button>
<a style="text-decoration:none" href="index.php?cmd=BlogAddForm">Add Note</a>
</button>
This is technically not valid html syntax. Some browsers allow it, but you would need to remove the anchor tag from within the button.
Because it's not valid: http://www.w3.org/TR/2011/WD-html5-20110525/the-button-element.html - an <a>
element is an "interactive element", which is not allowed: http://www.w3.org/TR/2011/WD-html5-20110525/content-models.html#interactive-content.