-
Day 1
-
1JavaScript Javascript is an easy-to-use programming language that can be embedded in the header of your web pages. It is a lightweight, interpreted,full-fledged programming language that, when app
-
2Variable A JavaScript variable is simply a name of storage location. There are two types of variables in JavaScript : local variable and global variable. There are some rules while declaring a J
-
3Objects JavaScript is an Object Oriented Programming (OOP) language. Object are usually variables that are used internally in the object's methods, but can also be globally visible variables that are
-
4Document Object Model The document object represents the whole html document. When html document is loaded in the browser, it becomes a document object. It is the root element that represents the
-
5
-
6Now your task is to create a js file named script.js, and include this js file in index.html which you already created. Make sure all of your code is arranged properly and cleanly. Your page must co
-
-
Day 2
-
1jQuery is a fast, small, cross-platform and feature-rich JavaScript library. It is designed to simplify the client-side scripting of HTML. It makes things like HTML document traversal and manipulation
-
2jQuery provides a trivially simple interface for doing various kind of amazing effects. jQuery methods allow us to quickly apply commonly used effects with a minimum configuration. The following tabl
-
3The following table lists all the methods used to manipulate the HTML and CSS. Method Description addClass() Adds one or more class names to selected elements
-
4Events are often triggered by the user's interaction with the web page, such as when a link or button is clicked, text is entered into an input box or textarea, selection is made in a select box, key
-
5jQuery is a very powerful tool which provides a variety of DOM traversal methods to help us select elements in a document randomly as well as in sequential method. Most of the DOM Traversal Methods d
-
6Method is used to create a JavaScript array of objects by serializing form values. It operates on a jQuery collection of forms and form controls. You can select one or more form elements such as <i
-
7
-
8Your page must contain the following: Scroll to the bottom of the page by clicking manual scroller icon. Blink any text using jQuery Change color of first word of all e
-
-
Day 3
-
1Ajax stands for Asynchronous Javascript And Xml. Ajax is just a means of loading data from the server to the web browser without reloading the whole page. Basically, what Ajax does is make use
-
2A plug-in is piece of code written in a standard JavaScript file. These files provide useful jQuery methods which can be used along with jQuery library methods. There are plenty of jQuery plug-in ava
-
3
-
4Your page must contain the following: Apply form validation for the form using any of the jQuery plugin Name, Email Id, Password should be mandatory. Check the name field contain only
-