You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can hit any of the content endpoints with either a html path or json path to be served the two different formats of a given content page. We use the json version to remote server on a content grid. That fetch is then inline cached on the card so we don't need to make any additional requests for that content.
If the HTML is the skeleton of the web page, then JavaScript is the nervous system and portions of the brain. It helps create events and interactions within the webpage
62
+
which allows for dynamic affects and interactivity on the page.
63
+
<hr>
64
+
<h5><strong>JavaScript Is Not Java</strong></h5>
65
+
66
+
<span>
67
+
<strong>JavaScript</strong> should not be confused with the <strong>Java</strong> programming language.
68
+
The name is purely a ploy to make it recognizable as a language during its inception.
69
+
A <strong>JavaScript</strong> file can be used for many things. Let's look at a few examples.
You could create a JavaScript file using the file extension <strong>YourFileName.js</strong> and then link it to your html page
80
+
using a script tag and src attribute like this:
81
+
<!-- TODO: Insert image example here. -->
82
+
</li>
83
+
</ul>
84
+
</span>
85
+
<div class="spacer mb-1"></div>
86
+
If HTML is the skeleton of our human body webpage, then JavaScript would have to be the nervous system and portions of the brain. It helps create events and interactions within the webpage
87
+
which allows for dynamic affects and interactivity on the page.
88
+
<div class="spacer mb-3"></div>
89
+
<strong>What does it do?</strong>
90
+
<div class="spacer mb-1"></div>
91
+
A web page is made of elements these elments are made up html tags that are rendered by the browser.
92
+
Javascript is used to create everything from a simple carousel to a complex web application. It allows you
93
+
to manipulate elements on the page and create events that can be used to create dynamic effects and interactivity.
94
+
On the flip side JavaScript could also have no visual impact on the page itself. However behind the scenes it's completing in some cases
0 commit comments