• I’m trying to make my site 508 compliant. I’m stuck on my social-icons, I’m getting an Empty Link error. My code is:

    <span class="kleo-facebook">
                    <a>" class="post_share_facebook"
                       onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=220,width=600');return false;">
                        <i class="icon-facebook"></i>
                    </a>

    How can I correct this?
    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • Not really sure but on your second line you close the anchor tag immediately, are you sure that is correct? Looks like it should read like this:

    <span class="kleo-facebook">
                    <a class="post_share_facebook"
                       onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=220,width=600');return false;">
                        <i class="icon-facebook"></i>
                    </a>
    Thread Starter kmw1130

    (@kmw1130)

    That’s how it is in my code, for some reason when I copied it here I put a >” after the <a. But still need to reference the link to pass 508.

    Thanks
    Kim

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘508 Compliant’ is closed to new replies.