Link to home
Start Free TrialLog in
Avatar of medic944
medic944

asked on

Web Accesibility Tool

http://wave.webaim.org/ Does anyone have experience with this free tool?
I have three "RED" errors that need to be repaired they show up as EMPTY BUTTON next to the (3) mentions of button below in the code. I need to repair this

</div></div><div id="cboxOverlay" style="display: none;">
11<div id="colorbox" class="" role="dialog" tabindex="-1" style="display: none;"><div id="cboxWrapper"><div><div id="cboxTopLeft" style="float: left;"><div id="cboxTopCenter" style="float: left;"><div id="cboxTopRight" style="float: left;"></div><div style="clear: left;"><div id="cboxMiddleLeft" style="float: left;"><div id="cboxContent" style="float: left;"><div id="cboxTitle" style="float: left;"><div id="cboxCurrent" style="float: left;">
1<button type="button" id="cboxPrevious">
1<button type="button" id="cboxNext">
1<button id="cboxSlideshow">
<div id="cboxLoadingOverlay" style="float: left;"><div id="cboxLoadingGraphic" style="float: left;"></div><div id="cboxMiddleRight" style="float: left;"></div><div style="clear: left;"><div id="cboxBottomLeft" style="float: left;"><div id="cboxBottomCenter" style="float: left;"><div id="cboxBottomRight" style="float: left;"></div></div><div style="position: absolute; width: 9999px; visibility: hidden; display: none; max-width: none;"></div>
</body></html>
ASKER CERTIFIED SOLUTION
Avatar of Chris Stanyon
Chris Stanyon
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
What is your expectation with this code
1<button type="button" id="cboxPrevious">
1<button type="button" id="cboxNext">
1<button id="cboxSlideshow">

Open in new window

As Chris pointed out in his post a button needs a closing tag and some text what you have done is opened a button then inside that button opened a second and then inside that a third and inside that a bunch of html

What are the '1's for in the code above?
Avatar of medic944
medic944

ASKER

Awesome, worked like a charm. Thanks