Wednesday, July 3, 2024
HomeLanguagesJavascriptHow to use JavaScript variables in jQuery selectors ?

How to use JavaScript variables in jQuery selectors ?

In this article, we will discuss how to use JavaScript variables in jQuery selectors. In the following examples, it can be seen that we have used the values stored in JavaScript Variables used inside the jQuery Selectors. 

Example 1: The concatenation technique can be applied in order to use the values stored in JavaScript variables. In the following example, whenever the button is clicked, the content present inside the <span> element is appended to the <p> element. Then we will use the ready() method that helps to load the whole page and then execute the rest code. 

html




<!DOCTYPE html>
 
<html>
 
<head>
    <title>JavaScript variables in jQuery slectors</title>
 
            integrity=
"sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
            crossorigin="anonymous">
    </script>
</head>
 
<body>
    <div>
        <button id="button"
                style="color: green;">
            Click Me
        </button>
 
        <p id="firstpara">
            <span id="span"
                  style="color: green;">
                A Computer Science Portal for Geeks<br>
            </span>
        </p>
    </div>
    <script>
        $(document).ready(function() {
            $("#button").click(function() {
                var paraId = "firstpara";
                var spanId = "span";
                $("#" + paraId).append($("#" + spanId).html());
            });
        })
    </script>
</body>
 
</html>


Output: 

Example 2: The following example changes the color of the text when the link is pressed. In this example, javascript:void(0); is used inside <a> element. Then we will use the ready() method helps to load the whole page and then execute the rest code. 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>JavaScript variables in jQuery slectors</title>
 
            integrity=
"sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
            crossorigin="anonymous">
    </script>
</head>
 
<body>
    <form>
        <p>
          Text:
          <input type="text">
        </p>
        <br>
 
        <a href="javascript:void(0);">
          Change the color of Text
        </a>
    </form>
    <script>
        $(document).ready(function() {
 
            $("a").click(function() {
                var type = $("input").attr("type");
                var attribute = "color";
                var color = "green";
 
                $("input[type=" + type + "]")
                .css(attribute, color);
            });
        })
    </script>
</body>
 
</html>


Output: 

jQuery is an open-source JavaScript library that simplifies the interactions between an HTML/CSS document, It is widely famous for its philosophy of “Write less, do more”. You can learn jQuery from the ground up by following this jQuery Tutorial and jQuery Examples.

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments