Article

What is Javascript

https://cdn.jsdelivr.net/npm/[email protected]/dist/js.cookie.min.js
Copy to clipboard

JavaScript is a programming language often used in conjunction with HTML to build web pages.

JavaScript helps to manipulate HTML pages on the fly, and is often used to respond to user interactions on a web page.

It can for example, show pop ups, validate form inputs and add/remove html elements as needed.

JavaScript applications are so diverse and its functions so broad that libraries have been written to take full advantage of certain niche of functionality that JavaScript provides.

For example the Jquery library was written on top of JavaScript, so that all web page interactions are compiled into a single, concise, and easy to use package.

Working with jquery instead of JavaScript is therefore much easier because of the reduced amount of code needed to achieve some web page manipulation functionality.

<script>
$(document).ready(function(){
  XT1
});
</script>
Copy to clipboard
Send to Live Demo

Live demo

<script>    
$(document).ready(function() {
  XT1
});
</script>
<script>
  
</script>
Copy to clipboard
Press the Run Demo button to execute the scripts above.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Your browser is too small

Resize your browser to be at least 769px wide.