{"id":20488,"date":"2022-12-02T11:57:12","date_gmt":"2022-12-02T11:57:12","guid":{"rendered":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/"},"modified":"2022-12-02T11:57:12","modified_gmt":"2022-12-02T11:57:12","slug":"what-is-aria-in-accessibility-why-should-you-use-it","status":"publish","type":"post","link":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/","title":{"rendered":"What Is ARIA In Accessibility &#038; Why Should You Use It?"},"content":{"rendered":"<p> <a href=\"https:\/\/go.fiverr.com\/visit\/?bta=1052423&nci=17043\" Target=\"_Top\"><img loading=\"lazy\" decoding=\"async\" border=\"0\" src=\"https:\/\/mailinvest.blog\/wp-content\/themes\/breek\/assets\/images\/transparent.gif\" data-lazy=\"true\" data-src=\"https:\/\/fiverr.ck-cdn.com\/tn\/serve\/?cid=40081059\"  width=\"601\" height=\"201\"><\/a>\n<br \/><img decoding=\"async\" src=\"https:\/\/mailinvest.blog\/wp-content\/themes\/breek\/assets\/images\/transparent.gif\" data-lazy=\"true\" data-src=\"https:\/\/www.hallaminternet.com\/wp-content\/uploads\/2022\/11\/shutterstock_1927424417.jpg\" \/><\/p>\n<div>\n<p class=\"lead\">ARIA, short for Accessible Rich Internet Applications, is a specification that is used to add accessibility information to HTML elements, making Web content and Web applications more <a href=\"https:\/\/www.hallaminternet.com\/how-to-improve-website-accessibility\/\">accessible<\/a> for those with disabilities. The <a href=\"https:\/\/www.w3.org\/TR\/using-aria\/#rule1\">main guide<\/a> you should follow when it comes to applying ARIA is written by <a href=\"https:\/\/www.w3.org\/TR\/using-aria\/\">W3<\/a>. The guide details five rules of ARIA for developers \u2013 in this article we\u2019ll guide you through the first two.<\/p>\n<h2>So, what is ARIA?<\/h2>\n<p>ARIA stands for <strong>A<\/strong>ccessible <strong>R<\/strong>ich <strong>I<\/strong>nternet <strong>A<\/strong>pplications.<\/p>\n<p>This essentially means applying native controls to custom HTML elements and it\u2019s broken down into two areas:<\/p>\n<p>Let\u2019s go through this in a bit more detail. Basically, ARIA is a means for a <a href=\"https:\/\/www.hallaminternet.com\/about-us\/team\/\">developer<\/a> to make a custom element behave like a native HTML element so that assistive technologies know how to present it to the user.<\/p>\n<p>A custom accordion is a perfect example of this, but did you know that there\u2019s a native <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/HTML\/Element\/details\" target=\"_blank\" rel=\"noopener\">HTML 5 accordion<\/a> and you don\u2019t even need any libraries?<\/p>\n<p>While we\u2019ll only be covering two of the <a href=\"https:\/\/www.w3.org\/TR\/using-aria\/\" target=\"_blank\" rel=\"noopener\">five rules to ARIA<\/a> in this article, we\u2019d highly advise that you take the time to read all five at some point.<\/p>\n<h2>Rule one<\/h2>\n<p>According to W3\u2019s guide, this is the <a href=\"https:\/\/www.w3.org\/TR\/using-aria\/#rule1\">first rule of ARIA<\/a> use:<\/p>\n<blockquote>\n<p>\u201cIf you can use a native HTML element [HTML51] or attribute with the semantics and behaviour you require already built in, instead of re-purposing an element and adding an ARIA role, state or property to make it accessible, then do so.\u201d<\/p>\n<\/blockquote>\n<p>Stop and think about what you\u2019re going to be making. Do you really need to use some custom JS and HTML? Can\u2019t you simply use a native HTML 5 element?\u00a0 More often than not, you actually can use a native element and it will only require a bit of CSS styling to make it look close to the designs.<\/p>\n<p>If you do go down the custom route, are you clear on how to use the <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/Accessibility\/ARIA\/Roles\" target=\"_blank\" rel=\"noopener\">roles<\/a> and <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/Accessibility\/ARIA\/Attributes\" target=\"_blank\" rel=\"noopener\">states<\/a> accordingly? There\u2019s a quite daunting list of things that will need to be applied to all the various interactions involved with this new component.<\/p>\n<h2>Rule two<\/h2>\n<p>W3\u2019s guide states that this is the <a href=\"https:\/\/www.w3.org\/TR\/using-aria\/#secondrule\">second rule of ARIA<\/a> use:<\/p>\n<blockquote>\n<p>\u201cDo not change native semantics, unless you really have to.\u201d<\/p>\n<\/blockquote>\n<p>A good example of one of the most common mistakes is applied to the humble button.<\/p>\n<h4>Wrong:<\/h4>\n<p>&lt;a href=\u201d#\u201d role=\u201dbutton\u201d class=\u201dbutton-class\u201d&gt;Button&lt;\/a&gt;<\/p>\n<p>This technique also involves additional custom JS to stop the anchor behaving like an in page scrolling anchor and so on. Not only that but this implementation of a button is still not even accessible in the default tab indexing of the page due to the preventDefault() used in the JS to override the default browser scroll behaviour!<\/p>\n<h4>Correct:<\/h4>\n<p>&lt;button class=\u201dbutton-class\u201d&gt;Button&lt;\/button&gt;<\/p>\n<p>Yes, it\u2019s a button so make it one. It solves all the problems that you just had to work around.<\/p>\n<p>Basically, do not use the ARIA roles to override default HTML 5 behaviour. Always retain default roles and states for a HTML element. It should be semantically correct, which is good for accessibility, <a href=\"https:\/\/www.hallaminternet.com\/seo\/\">SEO<\/a> and probably all round usability in general.<\/p>\n<h2>If you do have to use ARIA<\/h2>\n<p>Take note of all the ARIA rules, but this <a href=\"https:\/\/www.deque.com\/blog\/wai-aria-top-6-mistakes-to-avoid\/\" target=\"_blank\" rel=\"noopener\">list of tips<\/a> should also provide some good guidance on debugging.<\/p>\n<p>Try and think about user interactions with your custom element and how they\u2019re getting feedback from the events that occur. Some people may have be completely blind or not use a mouse, so take this into consideration.<\/p>\n<p>A massive downside to building a custom element is that it won\u2019t contain any of the <a href=\"https:\/\/www.w3.org\/TR\/using-aria\/#3rdrule\" target=\"_blank\" rel=\"noopener\">default keyboard navigation<\/a> associated with it and you\u2019ll have to replicate them all with ARIA states. This can sometimes be a huge task \u2013 but ignoring that fact, do you know what the default keyboard navigation is for that component you\u2019re trying to replicate?<\/p>\n<p>There\u2019s a saying:<\/p>\n<p>\u201cNo ARIA is better than bad ARIA.\u201d<\/p>\n<p>ARIA is a very powerful thing and if used incorrectly it can be incredibly destructive to those using assistive technologies. There\u2019s a <a href=\"https:\/\/www.w3.org\/WAI\/ARIA\/apg\/practices\/read-me-first\/\" target=\"_blank\" rel=\"noopener\">great article on this issue<\/a> that you should take into consideration before you start.<\/p>\n<p>A <a href=\"https:\/\/webaim.org\/projects\/million\/#aria\" target=\"_blank\" rel=\"noopener\">webAim survey of over one million homepages<\/a> found that pages with ARIA implemented on them averaged over 41% more errors detected than those without any ARIA.<\/p>\n<p>Keep in mind that if it is difficult to make a component accessible then maybe it\u2019s too complicated for users to use without assistive technology. It might be time to rethink and simplify the component.<\/p>\n<h2>Round-up<\/h2>\n<div class=\"section--core section--core-paragraph\">\n<div class=\"container\">\n<div class=\"entry-content\">\n<p>Follow <a href=\"https:\/\/www.w3.org\/TR\/using-aria\/\" target=\"_blank\" rel=\"noopener\">the five rules of ARIA<\/a>.<\/p>\n<p>Stick with native HTML and components as much as possible because all browsers and assistive technologies understand it. Don\u2019t reinvent the wheel.<\/p>\n<p>Think about the feedback you are going to need to give when somebody interacts with your component and make sure to apply the appropriate roles and or states.<\/p>\n<p>Only use ARIA when it\u2019s needed to give additional feedback, but if you do create a new component, always test it thoroughly.<\/p>\n<p>Want a helping hand with your <a href=\"https:\/\/www.hallaminternet.com\/how-to-improve-website-accessibility\/\">website accessibility<\/a>? Don\u2019t hesitate to <a href=\"https:\/\/www.hallaminternet.com\/contact\/\">get in touch<\/a> with our <a href=\"https:\/\/www.hallaminternet.com\/web-design-agency\/technical-web-development\/\">development team.<\/a><\/p>\n<\/div>\n<\/div>\n<\/div>\n<hr\/><\/div>\n<iframe data-lazy=\"true\" data-src=\"https:\/\/www.fiverr.com\/gig_widgets?id=U2FsdGVkX18x7XQvttUTrv1oEqmGNGTgvvCUiUoJ\/AP4z\/UyMz8lXGOLpu15jIMxBbTR0gmD5uBoFvhC4KWeALQRp3h\/X\/AwcVD0K8Wj9H\/ZzYKzcCNHosB9oS4SCJJFWiN85P9ICAc4OgCoE\/wHKIY7CDkf2\/DQ1vqGvk4smVe5cRDEmrLPCWi4FC8p40VUhSmWQ5udCm0zoJtorgWv3vbDQw0kKYkwn39ozAnQXDe+YvWMxkLFWA+O3TFwkJvdkIK+\/AUSnRssPKt5WHY0FhNOxnSPcLslEL4G4\/RfP95ve99U+kRnDy3X+KtzdQLY+u935ghON\/o3UE4IMv9oN6JX9RnxzL\/LRcOgnHigxStSGPKsZYtnz8RWNVT\/rOLAibqiWJadC5MYHRbekF3eg6FOGrQGkXYbsn0+a5aovnlLCbLwIqY9fcS17UX8J235iQ6cdmHNbrPeS84CMm34RA==&affiliate_id=1052423&strip_google_tagmanager=true\" loading=\"lazy\" data-with-title=\"true\" class=\"fiverr_nga_frame\" frameborder=\"0\" height=\"350\" width=\"100%\" referrerpolicy=\"no-referrer-when-downgrade\" data-mode=\"random_gigs\" onload=\" var frame = this; var script = document.createElement('script'); script.addEventListener('load', function() { window.FW_SDK.register(frame); }); script.setAttribute('src', 'https:\/\/www.fiverr.com\/gig_widgets\/sdk'); document.body.appendChild(script); \" ><\/iframe>\n<br \/><a href=\"https:\/\/www.hallaminternet.com\/what-is-aria\/\">Source link <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>ARIA, short for Accessible Rich Internet Applications, is a specification that is used to add accessibility information to HTML elements, making Web content and Web&#8230;<\/p>\n","protected":false},"author":1,"featured_media":20489,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[],"class_list":["post-20488","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech-universe"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What Is ARIA In Accessibility &amp; Why Should You Use It? - mailinvest.blog<\/title>\n<meta name=\"description\" content=\"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis.mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what&#039;s new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What Is ARIA In Accessibility &amp; Why Should You Use It? - mailinvest.blog\" \/>\n<meta property=\"og:description\" content=\"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis.mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what&#039;s new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/\" \/>\n<meta property=\"og:site_name\" content=\"mailinvest.blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/freelanceracademic\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-02T11:57:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mailinvest.blog\/wp-content\/uploads\/2022\/12\/shutterstock_1927424417.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin@mailinvest.blog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin@mailinvest.blog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/\"},\"author\":{\"name\":\"admin@mailinvest.blog\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#\\\/schema\\\/person\\\/012701c4c204d4e4ebd34f926cfd31a4\"},\"headline\":\"What Is ARIA In Accessibility &#038; Why Should You Use It?\",\"datePublished\":\"2022-12-02T11:57:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/\"},\"wordCount\":892,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mailinvest.blog\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/shutterstock_1927424417.jpg\",\"articleSection\":[\"Tech Universe\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/\",\"url\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/\",\"name\":\"What Is ARIA In Accessibility & Why Should You Use It? - mailinvest.blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mailinvest.blog\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/shutterstock_1927424417.jpg\",\"datePublished\":\"2022-12-02T11:57:12+00:00\",\"description\":\"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis.mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what's new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mailinvest.blog\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/shutterstock_1927424417.jpg\",\"contentUrl\":\"https:\\\/\\\/mailinvest.blog\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/shutterstock_1927424417.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2022\\\/12\\\/02\\\/what-is-aria-in-accessibility-why-should-you-use-it\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/mailinvest.blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What Is ARIA In Accessibility &#038; Why Should You Use It?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#website\",\"url\":\"https:\\\/\\\/mailinvest.blog\\\/\",\"name\":\"mailinvest.blog\",\"description\":\"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis. mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what&#039;s new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.\",\"publisher\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/mailinvest.blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#organization\",\"name\":\"mailinvest\",\"url\":\"https:\\\/\\\/mailinvest.blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/mailinvest.blog\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/default.png\",\"contentUrl\":\"https:\\\/\\\/mailinvest.blog\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/default.png\",\"width\":1000,\"height\":1000,\"caption\":\"mailinvest\"},\"image\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/freelanceracademic\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#\\\/schema\\\/person\\\/012701c4c204d4e4ebd34f926cfd31a4\",\"name\":\"admin@mailinvest.blog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/98ed217bd0f3d6a6dcae2d9b0c76e305b049a07275e315e1407e19ec8b08e139?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/98ed217bd0f3d6a6dcae2d9b0c76e305b049a07275e315e1407e19ec8b08e139?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/98ed217bd0f3d6a6dcae2d9b0c76e305b049a07275e315e1407e19ec8b08e139?s=96&d=mm&r=g\",\"caption\":\"admin@mailinvest.blog\"},\"sameAs\":[\"https:\\\/\\\/mailinvest.blog\",\"admin@mailinvest.blog\"],\"url\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/author\\\/adminmailinvest-blog\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What Is ARIA In Accessibility & Why Should You Use It? - mailinvest.blog","description":"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis.mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what's new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/","og_locale":"en_US","og_type":"article","og_title":"What Is ARIA In Accessibility & Why Should You Use It? - mailinvest.blog","og_description":"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis.mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what's new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.","og_url":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/","og_site_name":"mailinvest.blog","article_publisher":"https:\/\/www.facebook.com\/freelanceracademic\/","article_published_time":"2022-12-02T11:57:12+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2022\/12\/shutterstock_1927424417.jpg","type":"image\/jpeg"}],"author":"admin@mailinvest.blog","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin@mailinvest.blog","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/#article","isPartOf":{"@id":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/"},"author":{"name":"admin@mailinvest.blog","@id":"https:\/\/mailinvest.blog\/#\/schema\/person\/012701c4c204d4e4ebd34f926cfd31a4"},"headline":"What Is ARIA In Accessibility &#038; Why Should You Use It?","datePublished":"2022-12-02T11:57:12+00:00","mainEntityOfPage":{"@id":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/"},"wordCount":892,"commentCount":0,"publisher":{"@id":"https:\/\/mailinvest.blog\/#organization"},"image":{"@id":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/#primaryimage"},"thumbnailUrl":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2022\/12\/shutterstock_1927424417.jpg","articleSection":["Tech Universe"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/","url":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/","name":"What Is ARIA In Accessibility & Why Should You Use It? - mailinvest.blog","isPartOf":{"@id":"https:\/\/mailinvest.blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/#primaryimage"},"image":{"@id":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/#primaryimage"},"thumbnailUrl":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2022\/12\/shutterstock_1927424417.jpg","datePublished":"2022-12-02T11:57:12+00:00","description":"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis.mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what's new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.","breadcrumb":{"@id":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/#primaryimage","url":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2022\/12\/shutterstock_1927424417.jpg","contentUrl":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2022\/12\/shutterstock_1927424417.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/mailinvest.blog\/index.php\/2022\/12\/02\/what-is-aria-in-accessibility-why-should-you-use-it\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mailinvest.blog\/"},{"@type":"ListItem","position":2,"name":"What Is ARIA In Accessibility &#038; Why Should You Use It?"}]},{"@type":"WebSite","@id":"https:\/\/mailinvest.blog\/#website","url":"https:\/\/mailinvest.blog\/","name":"mailinvest.blog","description":"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis. mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what&#039;s new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.","publisher":{"@id":"https:\/\/mailinvest.blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mailinvest.blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/mailinvest.blog\/#organization","name":"mailinvest","url":"https:\/\/mailinvest.blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mailinvest.blog\/#\/schema\/logo\/image\/","url":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2022\/01\/default.png","contentUrl":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2022\/01\/default.png","width":1000,"height":1000,"caption":"mailinvest"},"image":{"@id":"https:\/\/mailinvest.blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/freelanceracademic\/"]},{"@type":"Person","@id":"https:\/\/mailinvest.blog\/#\/schema\/person\/012701c4c204d4e4ebd34f926cfd31a4","name":"admin@mailinvest.blog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/98ed217bd0f3d6a6dcae2d9b0c76e305b049a07275e315e1407e19ec8b08e139?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/98ed217bd0f3d6a6dcae2d9b0c76e305b049a07275e315e1407e19ec8b08e139?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/98ed217bd0f3d6a6dcae2d9b0c76e305b049a07275e315e1407e19ec8b08e139?s=96&d=mm&r=g","caption":"admin@mailinvest.blog"},"sameAs":["https:\/\/mailinvest.blog","admin@mailinvest.blog"],"url":"https:\/\/mailinvest.blog\/index.php\/author\/adminmailinvest-blog\/"}]}},"_links":{"self":[{"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/posts\/20488","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/comments?post=20488"}],"version-history":[{"count":0,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/posts\/20488\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/media\/20489"}],"wp:attachment":[{"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/media?parent=20488"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/categories?post=20488"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/tags?post=20488"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}