Before you learn how to read and write JavaScript language itself, you need to become familiar with some fundamental concepts in computer programming.They will be covered in Three posts: What exactly is a script and how do I create one? How do computers fit into the modern world? How can I compose a script for…
What exactly is a script and how do i create one?
A script is often a series of instructions that a pc can follow to accomplish a goal. You can compare scripts for just about any of the following: RECIPES Simply by adhering to the instructions in a recipe, one-by-one within the ordered layout, home cooks can produce a dish they’ve never made before.A few scripts…
Four great building tools to build web components
TOOLS, RESOURCES AND DEMOS THAT HELP ESTABLISH A NEW CODING APPROACH Polymer POLYMER-PROJECT.ORG The polymer venture has been initiated by google’s coding team and tends to make the Web Components scenery significantly simpler to move to. Any polyfills necessary to support Web Components throughout all browsers is instantly available. In addition to that polymer delivers two…
Demystifying Javascript
I was inspired by my close friend Nur Ahmad Furlong to produce a Javascript series explaining how JavaScript can be used in browsers to make websites more interactive,interesting,and user-friendly.I will also be dabbling with jQuery because it makes writing JavaScript a lot easier. 1.Understanding some basic programming concepts and the terms that JavaScript programmers use…
Web Components:The four core elements
Custom Elements </> Probably the most obvious aspect of a web component is the ability to create, modify and control HTML elements. The introduction of Custom Elements into browser standards enables us to break away from the limited vocabulary that HTML offers. This means we can create true mark-up semantics that are really meaningful in…
Hands on with Web Components
This tutorial will take you through using and creating Web Components within your projects. (See Web Components,the new standard in modular HTML development) As browsers are still undergoing development to support Web Components,Polymer will be used.Polymer is a component polyfill and library created by Google (polymer-project.org).This adds support to all modern browsers as well a…
Web Components,the new standard in modular HTML development
Web components have been around for a long time, under the hood of HTML.They are simply a combination of HTML, CSS and JavaScript package together as an HTML element. Web Components actually account for many of the huge strides that have been made with HTML5. One of the best example is the <video> element, by…