Skip to main content

Building a jQuery PPT like presentation - Part 1

This is more a video post and it covers how to build a simple PPT like presentation using jQuery. This is very elementary at this stage and we will incrementally add features to this.

The first version is a very rough one and cover elementary ideas and proof of concept.

Hope you like this. Do please note the video doesn't have any voice as I am still improving my recording skills (and also having a bad throat since couple of days). In any case, I do think action speaks louder that words.. (though this is just an excuse).

The URL for the source code is at http://jsbin.com/ovaxop/edit#source

Comments

Olga F. Honea said…
Thanks for this post. I don’t know a large number of links to forums but my friends seem to be able to spend a lot of time on them that’s for sure.
If you are open to having a guest blog poster please reply and let me know. I will provide you with unique content for your blog, thanks.
czllsnekk said…
Meet up with pals and enjoy yourself in their company. Oahu is the true-lifetime, step-by-stage accompaniment which may allow you to get from your frustration in getting back your ex or trying to keep them from departing. A very important factor you don't ever can do for anyone who is on the acquiring conclude is usually to chase he or she with calls. Additionally you might like movie structure.
here I googled it| Regardless of whether the one you love has moved on and is also now within a new partnership, this guide can instruct you ways to earn rid of it. Find out when you perform during the fixing your relationship procedure since the majority of men and women create inappropriate and hop last to sleep to in the near future and then increase the risk for romantic relationship more serious. Its horrid to discover it take place. Inside the final part you will understand how to make a strategy to win her back or you can just follow one of many plans bigger laid out for yourself.


Related Info
http://grooooglez.com
Searching To get The Magic Of Making Up Learn If It really is Correct For you personally Here
The Magic Of Making Up What I Ought to Under no circumstances Do To get My Ex Boyfriend Again
The Magic Of Making Up Remedy To Reconcile Broken Relationships
Revealed Magic of Making up Rip-off
The Magic of Making
jay said…
java script beneficial platform this blog mention various things
eegxoqxxa said…
If you were deeply in love with a girl, who will be forget about together with you but if you would like get her backside, this small wonder e book has every little thing that will help earn her rear to you. How much does the Magic of Making Up have which make it so prosperous? However, they are doing perform. Consider as an alternative asking, -What am I offering to that partnership?- -Using what methods is my spouse living greater since i am from it?- -So what can We do to create our marriage superior?- Discover solutions to contact, be generous and indicate love to your spouse, without having scorekeeping.
http://www.ezinearticles.com/?Caracol-Cream-Review&id=3328605 Miracle of creating Up Evaluation - Why Big t.H. Therefore on this view, look at as far as possible to adopt elements easy back with her by positioning by yourself in the problem as she. You will subsequently be instructed how you can look at your romantic relationship. Additionally you may possibly favor video clip format.


Related Info

Magic Of Making Up Evaluation - The way to Get Again Your Ex
The Magic of Making Up Ebook - Neglect Relationship and Partners Counseling, Here is What All of us Want!
The Magic of Making Up - Classes in Like and Relationship
The Magic Of Making Up By TW Jackson
The Magic Of Making Up
lfpymutlfm said…
6w6Lne wjmxsqyruxst, [url=http://gloaohbxypxm.com/]gloaohbxypxm[/url], [link=http://tuzhkumpdnze.com/]tuzhkumpdnze[/link], http://wxjyyujheayb.com/
ozjklpunq said…
5qtIhz dyqtoyzrlciv, [url=http://ezzyidmorcld.com/]ezzyidmorcld[/url], [link=http://whbmeeemcgjo.com/]whbmeeemcgjo[/link], http://rebevtivfkbf.com/

Popular posts from this blog

JavaScript Scope

In this blog post we will dig deeper into various aspects of JavaScript scope.  This is a pretty interesting topic  and also a topic which confuses many beginning JavaScript programmers. Understanding JavaScript scope helps you write bug free programs (hmm.. atleast helps your troubleshoot things easily) Scope control the visibility and lifetimes of variables and parameters.  This is important from the perspective of avoiding naming collisions and provides memory management service. Unlike other languages, JavaScript does not have block level scope.  For e.g. take for instance the following piece of c# code. public void Main () { int a = 5; if (true) { int b = 10; } // This will throw compile time error as b is not defined // and not within the scope of function Main(); Console.WriteLine(b); } If you write the same code in JavaScript, then the value of 'b' will be available outside the 'if' block. The reason for this is JavaScript does no...

JavaScript - The this keyword

"this" is one of the most misunderstood construct in JavaScript.  To understand this first lets go through how to create a construction function in JavaScript.  A constructor function is a function which is used to create instances of objects in JavaScript. You define a constructor function using the same notation that you use to define a normal JavaScript function.  The convention to follow is to capitalize the first letter of the function name. This requirement is not enforced by the JavaScript language but it is a generally accepted practice and there are many benefits which we will shortly discuss. Let's define a constructor function to hold our menu information. function Menu() { } So, in the above snippet you have a constructor function named Menu defined. At present this function doesn't do anything good. Let's see how to invoke this function var menu = new Menu(); Let's add some public properties to this function. function Menu() { ...

JavaScript Function Spaghetti Code

In this post we will have a look at the spaghetti code created by functions and how to avoid them. First lets quickly go through why this is a cause of concern. Problems with Function Spaghetti Code Variables/ functions are added to the global scope The code is not modular There's potential for duplicate function names Difficult to maintain No namespace sense. Let's take for example the following set of functions and check whats the issue with them. // file1.js function saveState(obj) {     // write code here to saveState of some object     alert('file1 saveState'); } // file2.js (remote team or some third party scripts) function saveState(obj, obj2) {      // further code...     alert('file2 saveState"); } Now the problem here is if your application is using saveState() then the execution of saveState() which one to call is determined by the script loading.  The later script overrides same functions already defin...