What is Javascript
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.
$(document).ready(function(){
XT1
});
</script>
Live demo
$(document).ready(function() {
XT1
});
</script>