Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

document.queryselector vs document.getelementbyid

With a querySelector statement,
you can select an element based on a CSS selector. 
This means you can select elements by ID, class, or any other type of selector. 
Using the getElementById method, you can only select an element by its ID.

Generally, you should opt for the selector that most clearly gets the job done.

If you only need to select an element by ID or class, 
you can use getElementById or getElementsByClassName, respectively. 
If you need to use a more elaborate rule to select elements, 
the querySelector method is your best option.
Comment

PREVIOUS NEXT
Code Example
Javascript :: remove empty values from array javascript 
Javascript :: js remove all objects from array where value 
Javascript :: calculate time difference in hrs moment 
Javascript :: uppercase and lowercase letters in js 
Javascript :: change object key name javascript es6 
Javascript :: js to json 
Javascript :: mock single function from module jest 
Javascript :: js add css class to element 
Javascript :: change js to json 
Javascript :: react native curved view 
Javascript :: gms2 object method 
Javascript :: jquery ajax endpoint 
Javascript :: moment js convert to local timezone 
Javascript :: javascript add required to input 
Javascript :: js sort string array 
Javascript :: delete backspace on string js 
Javascript :: phpmyadmin is not working in ubuntu 20.04 
Javascript :: angular display block 
Javascript :: redirect to page in javascript 
Javascript :: vehicle number yup validation 
Javascript :: checking a point is in polygon 
Javascript :: javascript make new date from hour 
Javascript :: select tag onchange 
Javascript :: javascript check radio button 
Javascript :: jquery read href attribute 
Javascript :: js make value positive 
Javascript :: longest word javascript 
Javascript :: alias import javascript 
Javascript :: unpack list javascript 
Javascript :: react-native android 
ADD CONTENT
Topic
Content
Source link
Name
8+1 =