W3 Validation Problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ilya Kraft
    New Member
    • Jan 2011
    • 134

    W3 Validation Problem

    Hi, tried to validate my website and came across several problems, some I understood, but the following one Is confusing to me.

    Line 137, Column 139: Element input with attribute type whose value is button must have non-empty attribute value.

    …7Bup%7D+likes% 2C+%7Bdown%7D+d islikes'/><input type='button' class='pulse_vo te_…

    I don't understand what it wants from me...

    Here is link to W3 page:

  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    It's saying buttons need a [value] attribute.
    Code:
    <input type="button" value="Click Here" />

    Comment

    Working...