On the Wishlist page, the Add Elephpant button is nonfunctional. An <a> tag with a href attribute cannot be a child of <button>. While most browsers support href on <button> it's not in the spec and thus we'll just render the link as an <a> and not a <button> and add the appropriate classes (and the role attr because that's how Bootstrap rolls).
On the Wishlist page, the
Add Elephpant
button is nonfunctional. An<a>
tag with ahref
attribute cannot be a child of<button>
. While most browsers supporthref
on<button>
it's not in the spec and thus we'll just render the link as an<a>
and not a<button>
and add the appropriate classes (and therole
attr because that's how Bootstrap rolls).