Back to Browse

#19 Starting with DOM Manipulations in JavaScript

195.1K views
Nov 4, 2018
9:57

DOM manipulations are when we use javascript code perform some activity on the HTML document. JS uses the DOM to access different elements on the website and perform specific tasks like - validations, changes, animations, functions etc. HTML events are "things" that happen to HTML elements. When JavaScript is used in HTML pages, JavaScript can "react" on these events. getElementById() - Definition and Usage The getElementById() method returns the element that has the ID attribute with the specified value. This method is one of the most common methods in the HTML DOM, and is used almost every time you want to manipulate, or get info from, an element on your document. Returns null if no elements with the specified ID exists. An ID should be unique within a page. However, if more than one element with the specified ID exists, the getElementById() method returns the first element in the source code. You can checkout some basic events on this website - https://www.tutorialspoint.com/javascript/javascript_events.htm Check out our courses: AI Powered DevOps with AWS - Live Course :- https://go.telusko.com/AIDevOps-AWS Coupon: TELUSKO10 (10% Discount) Complete Java Developer Course Batch-4: https://go.telusko.com/Complete4 Coupon: TELUSKO10 (10% Discount) Master Java Spring Development : https://go.telusko.com/masterjava Coupon: TELUSKO20 (20% Discount) Video by - Tanmay Sakpal Simple Snippets Channel link - https://www.youtube.com/simplesnippets

Download

0 formats

No download links available.

#19 Starting with DOM Manipulations in JavaScript | NatokHD