Javascript 51
What is the difference between target and currentTarget ?
‘target‘ and ‘currentTarget‘ are two most important properties of a java script event. ‘target‘is who generated the event and ‘currentTarget‘ is who the invent is intend for. These two event properties can be distinguishable from following Example, — Two ‘UL‘ List is created, The first one […]
Getting Started With AngularJS
AngularJS is the most popular MVW(Model View Whatever) framework From Google Inc.. In this Demo, "We will create a Hello Word Web application Using AngularJS framework.We will create a conroller and learn about scope variable.Finally We will print some string using template". The project structure, About this Demo:- --- "studentDetailApp" […]
How Events are handled in Browser?
Events in browsers are handled in two ways:- 1. Event Bubbling 2. Event Capturing. Bubbling:- — When an Event is occurred It is captured by the inner most element first.Then […]
what is coffee script?
Coffee script a wrapper language around java script.compiled coffee script is pure java script. It got popular due to its small in size and simplicity. Coffee script tried to get rid of bad parts of java script. Coffee Script is mostly influenced by Ruby and Python style of coding. “Cake” module is used for building […]