Js Events and selectors Flashcards

1
Q

What is an event in JavaScript?

A

An event is an action or occurrence that happens in the browser, which can be detected and responded to by JavaScript.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

True or False: Events in JavaScript can only be triggered by user interactions.

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Fill in the blank: The method used to attach an event handler to an element is called ____.

A

addEventListener

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the purpose of the ‘preventDefault()’ method?

A

The ‘preventDefault()’ method prevents the default action that belongs to the event from occurring.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which of the following is NOT a type of event in JavaScript? (a) click (b) hover (c) submit (d) load

A

b) hover

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does the ‘this’ keyword refer to in an event handler?

A

In an event handler, ‘this’ refers to the element that triggered the event.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Short answer: What is event bubbling?

A

Event bubbling is the process where an event starts from the target element and bubbles up to the root of the DOM.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Short answer: What is event delegation?

A

Event delegation is a technique where a single event listener is added to a parent element to manage events for multiple child elements.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the function of ‘querySelector()’?

A

‘querySelector()’ returns the first element that matches a specified CSS selector.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

True or False: ‘getElementById()’ can select multiple elements.

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Fill in the blank: To select all elements with a specific class name, you use ____.

A

getElementsByClassName

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Which method can be used to remove an event listener?

A

removeEventListener

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Short answer: What is the purpose of ‘stopPropagation()’?

A

‘stopPropagation()’ prevents the event from bubbling up to parent elements.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What event is fired when a user clicks on an element?

A

The ‘click’ event.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

True or False: You can use inline event handlers in HTML.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Fill in the blank: The event object is automatically passed to the event handler as a ____.

17
Q

What does the ‘load’ event signify?

A

The ‘load’ event signifies that the entire page, including all dependent resources, has finished loading.

18
Q

Which event occurs when a user presses a key?

A

The ‘keydown’ event.

19
Q

Fill in the blank: You can select elements using CSS selectors with the method ____.

A

querySelectorAll

20
Q

Short answer: What is the difference between ‘focus’ and ‘blur’ events?

A

‘focus’ occurs when an element gains focus, while ‘blur’ occurs when it loses focus.

21
Q

What is the purpose of the ‘mouseenter’ event?

A

‘mouseenter’ is triggered when the mouse pointer enters the area of an element.

22
Q

True or False: The ‘submit’ event is fired when a form is submitted.

23
Q

Fill in the blank: To select an element by its tag name, you use ____.

A

getElementsByTagName

24
Q

What does the ‘change’ event do?

A

The ‘change’ event is triggered when the value of an input element changes.