Vujs documentation summary

Today i finished from Vuejs documentation and i summarised it as a tags to review it quickly.     The data and the DOM are now linked, and everything is now reactive. Directive: are prefixed with v- to indicate that they are special attributes provided by Vue and they apply special reactive behavior to the rendered DOM. v-bind directive, EX:: v-bind:title to bind data into title attribute for element. Conditionl:: v-if…

Read More

JavaScript ES5 Summary

This is the summary of ES5 as a tags summarized from Speaking Javascript Book.   Strict mode. Accessors(Getter & Setter). New Functios: Object.create() Object.getPrototypeOf() Object.defineProperty() Object.defineProperties() Object.getOwnPropertyDescriptor() Object.keys() Object.getOwnPropertyNames() Object.preventExtensions() Object.isExtensible() Object.seal() Object.isSealed() Object.freeze() Object.isFrozen() Function.prototype.bind() New Methods: Array.isArray() Array.prototype.every() Array.prototype.filter() Array.prototype.forEach() Array.prototype.indexOf() Array.prototype.lastIndexOf() Array.prototype.map() Array.prototype.reduce() Array.prototype.some() Date.now() Date.prototype.toISOString() JSON.parse(). JSON.stringify(). Object.prototype.toJSON() and you can checked the Basic and Advanced topics also summarized from this Book: Javascript basics Advanced javascript

Read More

Advanced Javascript as a Tags

This is the advanced in Javascript as a tags, summarized from Speaking Javascript Book.   ####################### Syntax ################# The normal (nonstrict) mode is sometimes called “sloppy mode.” Variables Must Be Declared in Strict Mode. in strict mode code, functions can only be declared at top level or immediately within another function. Due to strict mode, you get a warning when you accidentally forget new and call it as a function.…

Read More

Advanced topics in HTML5 & CSS3

Lately, I have finished from present a training in advanced topics in HTML5 and CSS3 in collaborate with Prince Sumaya University, here is the main topics covered:  HTML4 Review. HTML5 Elements and Attributes. Advanced Topics in HTML5(Canvas, LocalStorage, AppCache, Drag&Drop, Web Worker, History Api, Geolocation, Web Sockets and FileSystem). Web Performance. Web Accessibility & Microdata. Web Design Approches(Resposnive, Adaptive, Fluid). Mobile touch events. The most important resources in front end…

Read More

Jquery Mobile – Book Review

First of all, this is my first post in my new blog, please review it and send me your feedback, your feedback very important for me. Since the beginning of this year I decided to go deep in the the mobile and tablet development, and after i search for the best framework can help me, its Jquery Mobile. Before couple of weeks i have finished read jQuery Mobile Book- by…

Read More