To meet WCAG 2.0 AA guidelines the @Tag Cloud@ that we have on our website needs to use the same URLs as @File Under@ categories at the bottom of our blog.Currently we use the Tag Cloud web part which outputs the link:
@a href=@/blog-posts/blog.aspx?tagname=budget@amp;groupid=24@@budget@/a@While the code for the ASCX Tranformation used to display blog posts outputs the link:
@a href=@/blog-posts/blog.aspx?tagid=150@@budget@/a@I need one of three things to happen for conformanceThe URLs need to match (my preference).The link text needs to be different, maybe change one to include @category@ in the textInclude Aria Labels to make one of them different, this would be the best for visitors with assistive technologiesHow can I change our code to make one of these changes happen?
↧