Reputation: 16632
Firebug is showing this HTML tag as "not well-formed":
<a id="aHarita" target="_blank" style="margin-left: 5px;" href="http://maps.google.com/maps?q=40.879236,29.386641&num=1&t=h&sll=40.879132,29.386962&sspn=0.006295,0.006295&ie=UTF8&ll=40.879317,29.386641&spn=0.003022,0.006947&z=18" >
Where is the problem?
Upvotes: 0
Views: 256
Reputation: 38238
There's a few things wrong with that, depending on your doctype. Run the page through http://validator.w3.org to get details on the validation failures. This is a good first stop for any validation problems, and should be useful for the future.
Upvotes: 3
Reputation: 655239
You need to replace the &
inside the attribute value by a reference like &
or &
, so:
<a id="aHarita" target="_blank" style="margin-left: 5px;" href="http://maps.google.com/maps?q=40.879236,29.386641&num=1&t=h&sll=40.879132,29.386962&sspn=0.006295,0.006295&ie=UTF8&ll=40.879317,29.386641&spn=0.003022,0.006947&z=18" >
Upvotes: 3