JavaScript querySelector

The querySelector is a JavaScript method that plays a vital role in the searching of elements.

In this section, we will understand and discuss the querySelector () method, its use and also look over an example to understand the concept of the querySelector () method practically.

Introducing JavaScript querySelector () method

An element interface method that enables us to search and return the first element within the document. It finds that element that matches with any of the specified CSS selectors or group of selectors. However, if no matching element is found, it returns null. The querySelector () method is the method of the Document interface only. A document interface is an interface that describes the common methods as well as the properties for any html, XML, or any other kind of document.

How does the querySelector () method perform the searching

We know that there are different types of searches that can be used for searching elements. However, the querySelector () method uses depth-first pre-order traversal of the nodes of the document. In it, the traversal starts with the first element in the document's markup and then traverse through the sequential nodes by order of the number of child nodes.

Syntax

The querySelector () method is a method of document interface and so it has such syntax.

It has one parameter, 'selectors', which is a DOM string and has one or more valid CSS selectors.

Return Type

It may return 'null' if no match is found, and if the first element matches the specified CSS selectors (if any), it will return that element.

However, if there is not any valid CSS selector, it will throw a 'SyntaxError' exception.

Now, before looking at an example implementation, we should know about various types of CSS selectors. If you are not aware, visit our https://www.tutorialsinfo.com/css-selector section of the CSS tutorial.

So, we will now implement an example under which we will cover a CSS selector and retain its first element value by using the querySelector () method.

Implementing querySelector () Example

Below is an example code that will make us understand the working of querySelector () method:

The output of the above code is shown below:

JavaScript querySelector

Code Explanation

  • The above code is a combination of html and JavaScript.
  • We have implemented different CSS selectors in the code.
  • In the JavaScript section, we have used a querySelector () and invoked an element selector of CSS.
  • So, the querySelector () method now moves to the code for traversing it using the Depth-first pre-order method and returns the first element selector as it finds it.

In this way, the querySelector () method gets executed, and you can also try and use the querySelector () method for other CSS selectors also.

Let's also see and use the same example for other CSS selectors also. Just replace the element selector code with these selector codes described below:

Few CSS Selectors

Class Selector

We need to use the (.) operator with the class name for finding the class first element. In the output, you will see that the querySelector () searches from the starting of the code and the search get completed on the h1 class element and so its return has a specified value as you can see below:

JavaScript querySelector

ID Selector

Use (#) for using the ID selector of CSS.

The output will be as shown below:

JavaScript querySelector

Attribute Selector

The output of the above code will be 'null' because, in our code, we have not used any such attribute as shown below:

JavaScript querySelector

So, there are various CSS selectors and can be used if one has complete knowledge and understanding of the CSS selectors and its types.

JavaScript querySelectorAll () Method

The querySelector () method of JavaScript is used for selecting only the first element from the code. But what in case we want to retain more than one CSS selector value from the code. So, for such a case, we use another method of the Document interface, which is known as the querySelectorAll () method. The querySelectorAll () method is a method that is used to return all the matching values of the specified CSS selector or group of a CSS selector.

Syntax

In the syntax, it contains selectors as an argument which holds one or more selectors with which we may match the values.

Return

If the matching list or selector is found, it will return the specified value of those. Else it will return an empty nodeList if no match is found.

Also, in case the specified CSS selectors have CSS pseudo-element, it will return an empty list.

Syntax Error

If there is a syntax error, it will return a syntax error exception that the specified selector's string is not valid.

Example

Below is the same example we have used for explaining the querySelector () method, let's look at the same example to understand the difference between both the methods:

Now, you can see the difference between the code that in the first example, we used the querySelector () method and it outputted only the first matching selector value. But, when you observe the output of this second example, you will see that it has returned all the matching values of the specified selectors or group of selectors. The output of the above code is shown below:

JavaScript querySelector

Code Explanation

  • The above code is a combination of html and JavaScript.
  • We have implemented different CSS selectors in the code.
  • In the JavaScript section, we have used a querySelectorAll () method and invoked an element selector of CSS.
  • So, the querySelectorAll () method now moves to the code for traversing it using the Depth-first pre-order method and returns all the matching element values that are specified as querySlectorAll () method parameters.

So, in the same way, we can use the querySelectorAll () method for the various other types of CSS selectors also, and it will return all the matching values of the selectors which are specified as its argument. In order to implement the method, replace the querySelector () method with querySelectorAll () method for various selectors, and the method will find the match and will return atleast one matching value of the specified element.






Contact US

Email:[email protected]

JavaScript querySelector
10/30