Found 10877 Articles for Web Development

How to add a class on click of anchor tag using jQuery?

David Meador
Updated on 13-Feb-2020 09:56:22

1K+ Views

To add a class on click of anchor tag using jQuery, use the addClass() method. You can try to run the following code to learn how to implement adding a class on click of anchor tag using jQuery −ExampleLive Demo                       $(document).ready(function() {         $("a").click(function() {           $("a.active").removeClass("active");           $(this).addClass("active");         });       });                   .active {          font-size: 22px;         }                     One       Two       Click any of the link above and you can see the changes.    

How to add a title in anchor tag using jQuery?

Ricky Barnes
Updated on 13-Feb-2020 09:54:55

2K+ Views

To add a title in anchor tag in jQuery, use the prop() method. The prop() method is used to set properties and values of the selected elements.You can try to run the following code to learn how to add a title in anchor tag using jQuery −ExampleLive Demo                        $(document).ready(function(){          $("#button1").click(function(){             $('.myClass').prop('title', 'This is your new title');             var myTitle = $('.myClass').prop('title');             alert(myTitle);          });        });                                        Get Title          

How to find anchor tag in div and add class using jQuery?

Ricky Barnes
Updated on 12-Jun-2020 13:02:21

3K+ Views

To find anchor tag in div, use a selector and the addClass() method adds a class using jQuery.You can try to run the following code to learn how to find anchor tag in div and add class:Live Demo                          $(document).ready(function(){            $("#button1").click(function(){              $('#div1 a').addClass('myclass');            });         });                                 .myclass {              font-size: 25px;            }                                  Demo                      This is demo text.             Click    

How to add and remove a class to an anchor tag with jQuery?

Ricky Barnes
Updated on 13-Feb-2020 09:48:48

1K+ Views

To add and remove a class to an anchor tag, use the toggleClass. Using it you can add and remove a class on a click.You can try to run the following code to learn how to add and remove a class to an anchor tag with jQuery −ExampleLive Demo                         $(document).ready(function(){          $("#mylink").click(function (e) {             e.preventDefault();                     $(this).toggleClass("selected");            });         });                     .selected {            color: red;         }                     Click me       The above will add and remove class (change color) on click.    

How to set new value for an attribute using jQuery?

Ricky Barnes
Updated on 13-Feb-2020 09:47:58

520 Views

The jQuery attr() method is used to get the value of an attribute. It can also be used to set new value. We will set new value of attribute href to tutorialspoint.com/html5 from tutorialspoint.com/css.You can try to run the following code to learn how to set new value for an attribute in jQuery −ExampleLive Demo           Selector Example                      $(document).ready(function(){             $("button").click(function(){                $("#tpoint").attr("href", "https://www.tutorialspoint.com/html5");             });       ... Read More

How to change the value of an attribute using jQuery?

Ricky Barnes
Updated on 13-Feb-2020 09:46:57

7K+ Views

The jQuery attr() method is used to get the value of an attribute. It can also be used to change the value. In the example, we will change the attribute value tutorialspoint.com to tutorialspoint.com/java.You can try to run the following code to learn how to change the value of an attribute using jQuery −ExampleLive Demo           Selector Example                    $(document).ready(function(){          $("button").click(function(){            $("#tpoint").attr("href", "https://www.tutorialspoint.com/java");          });        });                     tutorialspoint.com       Change attribute value       The value of above link will change on clicking the above button. Check before and after clicking the link.    

How to use attr() method in jQuery to get the value of an attribute?

David Meador
Updated on 13-Feb-2020 09:45:45

304 Views

The jQuery attr() method is used to get the value of an attribute, with the attribute, for example, href. Mention the attribute as the parameter of the attr() method.You can try to run the following code to learn how to use the attr() method to get the value of an attribute:ExampleLive Demo           Selector Example                      $(document).ready(function(){              $("button").click(function(){                  alert($("#tpoint").attr("href"));              });          });                     Website tutorialspoint       Show complete link    

How to get the value of custom attribute in jQuery?

Amit D
Updated on 13-Feb-2020 09:44:48

1K+ Views

To get the value in jQuery, use the data-attributes with the data() method. You can try to run the following code to implement how to get the value of custom attribute:ExampleLive Demo           Selector Example                      $(document).ready(function() {             alert($('#my_id').data('original-title'));          });                               Demo    

How to get the value of src attribute in jQuery?

Amit D
Updated on 13-Feb-2020 09:43:51

4K+ Views

To get the value of src attribute in jQuery is quite easy. We will get the src attribute of the img tag. This attribute has the URL of the image. Let’s first see how we can add jQuery −You can try to run the following code to learn how to get the value of src attribute in jQuery −ExampleLive Demo           Selector Example                      $(document).ready(function() {             alert($('#myimg').attr('src'));          });                     Logo          

How to get the value of id attribute in jQuery?

Amit D
Updated on 13-Feb-2020 09:42:47

2K+ Views

Use jQuery attr() method to get the value of id attribute. You can try to run the following code to learn how to get the value in jQuery −ExampleLive Demo           jQuery Example                          $(document).ready(function() {             alert($('#div1').attr('id'));          });                                          This is demo text.          

Advertisements