Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Validation error 1

Status
Not open for further replies.

maanton

Programmer
Mar 27, 2005
52
0
0
The error is that...
Code:
Error  Line 39 column 26: required attribute "id" not specified.

<map name="m_offer_photos">

The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
What shall I do?
Thanks in advance
 
What shall I do?

How about exactly what it says? Give it an id:

Code:
<map name="m_offer_photos" [!]id="m_offer_photos"[/!]>

-kaht

[small] <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <B> <P> <.</B>[/small]
[banghead] [small](He's back)[/small]
 
What shall I do?

Read the error and think about what it means... it's not that badly written, I thought:

required attribute "id" not specified

The attribute given above is required for an element that you've used, but you have omitted it.

Dan



[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top