Learn CSS from the Best Tutors
Search in
Asked by Himangi Last Modified
Sadika
To apply a CSS class to an anchor tag (`<a>` element) using JavaScript, you can use the `classList` property. Here's a simple example:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apply CSS Class to Anchor Tag</title>
<style>
.highlight {
color: red;
font-weight: bold;
}
</style>
</head>
<body>
<a href="#" id="myAnchor">Click me</a>
<script>
// Get the anchor element by ID
var myAnchor = document.getElementById("myAnchor");
// Add the CSS class to the anchor element
myAnchor.classList.add("highlight");
</script>
</body>
</html>
```
In this example:
1. We have an anchor tag with the ID "myAnchor."
2. In the `<style>` section, we define a CSS class named "highlight" with some styles.
3. In the `<script>` section, we use JavaScript to get the anchor element by its ID and then add the "highlight" class to it using the `classList.add` method.
After executing this script, the anchor tag will have the styles defined in the "highlight" class applied to it. You can replace "highlight" with your desired class name.
If you want to remove a class or toggle between adding and removing a class, you can use `classList.remove` or `classList.toggle` methods, respectively. For example:
```javascript
// Remove the CSS class from the anchor element
myAnchor.classList.remove("highlight");
// Toggle the CSS class on the anchor element
myAnchor.classList.toggle("highlight");
```
Choose the method that best fits your specific use case.
Related Questions
Why is HTML is used in Web Application?
Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com
Ask a QuestionRecommended Articles
Why Should you Learn HTML
Since the world today is ruled by the Internet, everyone desires to build a website for either business or personal interests. HTML or Hyper-text Mark-up Language is a globally standardized language which used to format web pages. By using HTML, the appearance of text, links, images and almost every part of a web page could...
Read full article >
Skills Required to Become a Front End Web...
Today, no business can exist without having its own website to interact with its customer base. Having a website is no more restricted to the big MNCs. With the advancement in technology and global business, even the small enterprises are spending on having their own websites and development teams. The person works on web...
Read full article >
Learn Hadoop and Big Data
Hadoop is a framework which has been developed for organizing and analysing big chunks of data for a business. Suppose you have a file larger than your system’s storage capacity and you can’t store it. Hadoop helps in storing bigger files than what could be stored on one particular server. You can therefore store very,...
Read full article >
Make a Career in Mobile Application Programming
Almost all of us, inside the pocket, bag or on the table have a mobile phone, out of which 90% of us have a smartphone. The technology is advancing rapidly. When it comes to mobile phones, people today want much more than just making phone calls and playing games on the go. People now want instant access to all their business...
Read full article >
Looking for CSS Training?
Learn from the Best Tutors on UrbanPro
Are you a Tutor or Training Institute?
Join UrbanPro Today to find students near youThe best tutors for CSS Classes are on UrbanPro
The best Tutors for CSS Classes are on UrbanPro