Knockout is an MVVM JavaScript framework that allows us to quickly develop rich applications with a declarative style and rich template support. Easier to create rich, desktop-like user interfaces with JavaScript and HTML. Rich client side interactivity -- Declarative binding, Observables Key Concepts: Dependency tracking via Observables Declarative Binding: example <input data-bind = "value: firstname"> Template support … Continue reading Knockout Fundamentals
Category: FrontEnd
JQuery: Features
JQuery is a JavaScript framework that has many built-in functionalities."Write less do more library." Fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. An open source project. 1000+ plugins available. History: Developed by John Resig of Mozzila. jQuery was first announced at BarCamp NYC … Continue reading JQuery: Features
WebStorm Fundamentals
WebStrom is an IDE by JetBrains.com to help Web and JavaScript developers. Focused on JavaScript development. IDE can create different type of projects. Key Shortcuts for HTML: Clt + Alt + T -- Select text then put inside surrounded. like put a selective html part inside div block. Clt + Space -- Search for files … Continue reading WebStorm Fundamentals
HTML5 New JavaScript APIs
HTML5 is addition of number of different JavaScript APIs. To check different api support for different browser versions visit http://caniuse.com/#comparison Below are the few APIs with short description which has been introduced in HTML5 : # Canvas : Through canvas api we can declare 2D or 3D context through WebGL (Web Graphics Library) is a JavaScript API for rendering interactive … Continue reading HTML5 New JavaScript APIs
Bootstrap Introduction
Bootstrap is an Open Source front end toolkit for building web application. It help us to build user interface using HTML, CSS, JavaScript. Popular among web designer and web developer because it's flexible and easy to use. Bootstrap(CSS Framework) is primarily about creating some reusable styles so we can extend the build on top that. … Continue reading Bootstrap Introduction
HTML5 Semantic markup
Semantic markup: In HTML5 markup not only have syntactic(syntex) meaning, but semantic(related to logic) meanings. In HTML5 we have shorten <!DOCTYPE html> description because of not referring to Document Type Definition (DTD). HTML 5 semantic markup for Structural Elements, elements which convey the layout of the Page. Before HTML5 webpage are basically designed based on . In … Continue reading HTML5 Semantic markup
HTML5 Introduction
HTML5 is the 5th major revision of core HTML language of World Wide Web. Designed to replace both HTML 4, XHTML, and the HTML DOM Level 2. Added new tags & APIs to deliver rich contents like videos etc. with-out plugins. History: Version Year Tim Berners-Lee invented www 1989 Tim Berners-Lee invented HTML 1991 Dave Raggett drafted … Continue reading HTML5 Introduction