Skip to main content

Posts

Showing posts from December, 2018

JQUERY

JQuery is a collection of JavaScript. jQuery simplifies the programming of JavaScript also it is easy to learn.Because of its less write and more work.It simplifies the HTML and DOM manipulation.It is free open software more advantage to the developers. JQuery library contains following libraries HTML/DOM manipulation CSS manipulation HTML event methods Effects and animations AJAX Utilities Major thing in JQuery is ,that is it run mostly same in major web browsers.Biggest advantage of this is ,because of its wide usage and user already download the file therefore when it is loaded it will loaded from cache. We can access the jquery with online link or from our file. < head > < script  src ="jquery-3.3.1.min.js" > < /script > < /head > online < head > < script  src ="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.min.js" > < /script > < /head >

JSON

JSON stands for  JavaScript Object Notation. JSON is a light weighted format that is used to exchanging and storing data. It is based on a subset of JavaScript language and JSON is text based written language. some JavaScript is not JSON, and some JSON is not JavaScript. JSON values can consist of: objects (collections of name-value pairs) arrays (ordered lists of values) strings (in double quotes) numbers true, false, or null.JSON is language independent. It is a much-more compact way of transmitting sets of data across network connections as compared to XML. Sending data to the server: var myObj = { name: "John", age: 31, city: "New York" }; var myJSON = JSON.stringify(myObj); Receiving data from the server: var myJSON = '{"name":"John", "age":31, "city":"New York"}'; var myObj = JSON.parse(myJSON); JSON basic built function JSON.stringify() JSON.parse()

Java Script(JS)

JavaScript is a high level and interpreted language.Really javascript convert the static page to dynamic page.That means that html structure the web page,css style the web page javascript dynamic the action of the web page. When we go through a instance: button "submit" is displayed on the web page.In Html we align the position of the button ,in CSS we style the button,in JS we provide the action or function to the button. We wrote javascript script in html document.Mostly we did not write the all the javascript code in the html document,because it become complicated and difficult to find the errorin the coding thats why we code the javascript externally and link it in the html script tag.Javascript is not like html or css because it is a high level language and case sensitive. As like all languages there are more and more elements available in JS.There is a method available in JS to get the output. elements as follows 1)Variable 2)Operators 3)Data types 4)Function...

IDE

IDE is  stands for  integrated development environment  ( IDE ) .It is a software application which provides the facilities to programmers for their software development.IDE helps to programmers to provide the maximum productivity. Examples for IDE Microsoft visual studio Eclipse Aptana studio 3 orcle netbeans 7 code::blocks IDE advantages Access from any where with internet access. Minimal configuration needed Centralized workspace No need of install to lot of softwares.

CSS

CSS stands for Cascading Style Sheets.CSS is mainly used to present the layout of webpage.Most of facilities which are not available in html are present here.specially colors,fonts and layouts are establish in css sheets.CSS should be saved with .css extension.CSS specifications are maintained by W3C. CSS can be added in 3 ways. i)Inline -   By using the style attribute in HTML elements           This method is used to add style to the specific tag           Eg: <html>                 <body>                  <h1 style="color:blue;">hello</h1>                                                          </body>                 ...

Bootstrap

Bootstrap is a front-end framework for design the websites and web applications. Very important of this is, open source and free.It is a very good platform to the front end web developers.It is a compose of HTML and CSS. Bootstrap design templates consist of form,buttons,navigation,and typography.For the dynamic action it optionally consist of java script extensions too.    Bootstrap is responsive webdesign because of account to the desktop,tablet and mobile phone.    Easy of handling the code gives more preference to bootstrap.At the same time its responsive features become major role in its sustain and superior. Bootstrap 3 supports the latest version of Google chrome,Firefox,Internet Explorer and Opera. Ways to access our own website 1)We can download from getbootstrap.com 2)include bootstrap from its CDN, but its CDN is public and also bootstrap uses Stackpath as its CDN.