Skip to main content

Posts

Showing posts from August, 2020

Jquery Introduction

Jquery Introduction Jquery is the plugin of javascript which provides advanced functionality in web application. It provide predefined method for animation,rotation,transition,transformation,validation ,mathematical operation,API communication . Jquery is dependent on the Jquery plugin because all methods will be implemented by the plugin. Syntax of Jquery:- 1) Download Jquery plugin from Jquery.org site 2) Integrate Jquery under HTML head section 3) define Jquery Block Jquery will use predefined method and access page element without explicit calling. <input type="text" id="txt1"  /> document.getElementById("txt1") $("#txt1").val() Jquery Event Method will be called directly. <input type="button" onclick="fun()"  /> <script> $(button).click(){} </script> Download Jquery From This Link and https://code.jquery.com/jquery-3.4.1.min.js Create jquery.min.js file un...

Angular Framework 17.0 Tutorials

Angular Framework Introduction .......................................................................................................................................................................   before study this first you learn JS and Jquery:- https://www.shivatutorials.com/search/label/JAVASCRIPT https://www.shivatutorials.com/search/label/Jquery It is a javascript framework which provides an MVC design pattern to develop dynamic web application using HTML and JavaScript Object. MVC means Model, View, and Controller, it is used to distribute the project on different project layer. Angular JS-Support JavaScript code  and Typescript code. structure to write Business Code. The flow of MVC:- MVC flow is the opposite of there name. The First Controller module will be loaded then View will be loaded after that model object will be integrated.                    ...

What is Javascript?

Javascript:-  It is the client-side (browser side) s cript-based language that is used to implement business logic, validation, animation, and dynamic design view in web applications. Javascript has been modified and implemented using a different library. 1 Jquery 2 Angular 3 Angular Js 4 Node JS 5 React 6 React native 7 Knockout 8 Particle 9 Express Javascript Architecture:- DOM (Document Object Model):- Javascript provides a separate window with a document to contain and access all Html elements. Javascript can provide accessibility to all HTML elements. If we want to access an HTML element using javascript then we can use two different syntax 1) document.getElementById("idname").attribute 2) document.getElementsByName("elementname").attribute <input type="text" id="txt"  /> a=document.getElementById("txt").value; We can write Javascript under HTML documents because without an HTML document JS has no role.      < script> ...