Questions tagged [atag]

ATAG is part of a series of accessibility guidelines, including the Web Content Accessibility Guidelines (WCAG) and the User Agent Accessibility Guidelines (UAAG).

ATAG is part of a series of accessibility guidelines, including the Web Content Accessibility Guidelines (WCAG) and the User Agent Accessibility Guidelines (UAAG).

http://www.w3.org/WAI/intro/atag.php

23 questions
2
votes
3 answers

Can't get string inside ATag

I am a beginner, so please be kind. I'm using Beautiful Soup to parse through some html. I have gotten to where i found this a tag a_tag = Shakira Mirfin I would like to get…
Newbie88
  • 36
  • 1
2
votes
2 answers

Can't find atag link with document.querySelector

I am trying to find a link that contains: ng-click="showModal()" and has the innerText: 1122334455 I have tried to use the below code but it doesn't find the link(atag). I am not sure what could be the problem in the codeline that uses:…
Andreas
  • 1,121
  • 4
  • 17
  • 34
2
votes
2 answers

WCAG 2.0 and ATAG together

I am bit confused about ATAG and WCAG 2.0. I was wondering if it is ever appropriate to use both ATAG and WCAG for one system?
1
vote
1 answer

Android WebView - onCreateWindow of Message.getData().getString("url") return null with Tag created by createElement()

I am meeting an issue with onCreateWindow of Android WebView This is my Codes : @Override public boolean onCreateWindow(WebView view, boolean isDialog, boolean isUserGesture, Message resultMsg) { final WebView newWebView = new…
Hư Vũ
  • 11
  • 2
1
vote
2 answers

Icons( A href tags) not displaying in row direction(horizontal line)

Please why do my icons not arrange in a row despite the div property set to flex. Also note that the icons are embedded in a tags. Here is the code in HTML
1
vote
1 answer

How do I link images with an a tag while applying css to the images?

I'm trying to link my images to their corresponding sites, so I added my images inside an tag.

Talk to us

Reach us via

karinapichardo
  • 67
  • 2
  • 10
1
vote
1 answer

HTML tag won't work? Is there an alternative coding tag?

I'm using CodePen to create my CIS 101 class final but for some reason, my HTML links won't load. It keeps giving me this: /boomboom/v2/WEBLAB5_HOUSER.html. The homework links on the website are working just fine so I'm wondering if its the tag that…
0n_uh
  • 11
  • 4
1
vote
1 answer

is tag post method or get method?

I was working on a Spring Security logout with React.js and used the tag to send a /logout request cause axios didn't seem to work with the post method. isn't it supposed to be a post method to access the logout() method with the default "/logout"…
0
votes
1 answer

How can I get href in this a tag?

I want to get the href (https://www.dcard.tw/forum/popular) from https://www.dcard.tw/ this href is under my code: from bs4 import BeautifulSoup import requests url = "https://www.dcard.tw/" soup =…
0
votes
2 answers

Anchor tags are not working after the position is fixed

I've tried the method increasing z-index of the div of the navigation bar. But somehow the nav bar's anchor tag/ link isn't working after I fixed the position of the nav bar. #navbar { grid-area: navbar; padding: 1em 1em; margin: 0; …
JJ Cha
  • 89
  • 1
  • 5
0
votes
4 answers

How do you make an anchor link inside tag non-clickable or disabled?

I have an anchor link that was inbuilt with a tag, as I know we can disable/prevent click with different methods on the anchor tag. But my question arises can we prevent the click only for which is present inside the anchor tag.
Script Host
  • 911
  • 1
  • 11
  • 22
0
votes
2 answers

how to change the wordpress theme css

I have a problem with my wordpress theme. an web developer has customised the theme. Now i want to edit this theme, aspecially the
Tim
  • 91
  • 7
0
votes
1 answer

Why can't I get the complete 'href' as showing in browser from noon.com

Here is what I'm doing import requests from requests.adapters import HTTPAdapter from bs4 import BeautifulSoup HEADERS = { 'authority': 'www.noon.com', 'pragma': 'no-cache', 'cache-control': 'no-cache', 'dnt': '1', …
Tabraiz Yasin
  • 65
  • 1
  • 5
0
votes
1 answer

How to access previous directory in html

I have index.html file in "WTProject" Folder. I've created 404.html in "404" Folder which is in "WTProject". It simply go to 404.html from index.html. but I don't know how to go back to WTProject Folder to access index.html. I mean what should I…
1
2