http://madhairsilence.wordpress.com/2012/10/20/jquery-object-oriented-programming/
jQuery – Object Oriented Programming
OOPS!! Am not screaming. I mean Object oriented programming.
OOPS here , OOPS there and OOPS everywhere. Does jQuery support object oriented programming?
The answer is a big YES*.
I put a * next to YES. Did you see that. It means Conditions Apply. We will talk about the conditions apply later.
You can clearly see, jQuery has sold the encapsulation feature for duck typing. Only god knows, the actual state of an object here.
Consider a simple example HTML;
Now lets convert this to a simple object
Lets create a simple abstract class ( Dont search for the abstract keyword. We dont have one. if you want an abstract class, better YOU dont instantiate it)
Clean!. Try it!. you will love it.
OOPS here , OOPS there and OOPS everywhere. Does jQuery support object oriented programming?
The answer is a big YES*.
I put a * next to YES. Did you see that. It means Conditions Apply. We will talk about the conditions apply later.
Class Declaration
Let us create a simple class.var simpleClass = { };Thats it?. Attributes? Methods ?. Where are they?. Lets see how can we fit those in inside this empty class.
Attributes and Behaviours
var simpleClass = { testAttribute : 'test', // atttribute testMethod : function() //method { return testAttribute; } };Now we instantiate this Object.
var simpleClassObj = new simpleClass();Perfect!!!!.
Conditions Apply
Private Variable
There aint any private variables here. To access the testAttribute, just usesimpleClassObj.testAttriute;Enough!!
Dynamic Attribute Insertion
Suppose, i use the statementsimpleClassObj.testAttribute2 = 'test2';Do you think, it will work. compilation error??. Duh!. It will still work. Our exceptional system will modify the source class for us ( Amazing huh!!).
You can clearly see, jQuery has sold the encapsulation feature for duck typing. Only god knows, the actual state of an object here.
Why OOPS in jQuery
Now, the question. If not for encapsulation, why do we need to go for OOPS approach in jQuery. The answer is Organization.Consider a simple example HTML;
<input type="text" name="test-name" id="test-id" class="test-class" style="test-style"/>If you want to manipulate this dom object in jQuery , you go to do this
$('#test-id').val() // get value $('#test-id').attr('name') // get name $('test-id').html() //get inner HTMLCan you see, these three simple statements have absolutely no similarity (except the object part). Imagine a similar style of code , in a page which has plenty of dom objects and widgets. Do you think its easy to understand??.
Now lets convert this to a simple object
Lets create a simple abstract class ( Dont search for the abstract keyword. We dont have one. if you want an abstract class, better YOU dont instantiate it)
var syndrome = { doHide : function(){ this.hide('slow }, doShow : function(){ this.show( 'slow' ); }, doDisable : function(){ this.attr('disableddisabled'); }, toggle : function(){ this.toggle(); }, getStyle : function(){ return this.attr('style }, setForeground : function(color){ var style = 'color:'+color+';'; this.attr('styletyle+this.getStyle()); }, setBackground : function(color){ var style = 'background-color:'+color+';'; this.attr('styletyle+this.getStyle()); }, getName : function(){ return this.attr('name }, getValue : function(){ return this.attr('value }, getClass : function() { return this.attr('class }, getContent : function(){ return this.html(); } };Its easily readable, you can see what am doing. Just put some common methods. Now , lets see how can we use this in our above example.
var testObj = $('#test-id'); //get the dom object $.Extend( testObj, syndrome ); //extending the abstract class. So , the method should be available here. testObjtestObj.getValue(); // Get value testObj.getName(); // Get Name testObj.getContent(); // Get contentNow this looks neat and clean. Now Imagine the same scenario, a lot of components and widgets. What will you have . Just a list of $.Extend statements with pure object interaction.
Clean!. Try it!. you will love it.
Posted by selva | October 20, 2012, 7:23 pm
Try it!
Posted by Attila Max Ruf | September 3, 2013, 11:42 am
Paste the below code( just these line, no other things needed) in a notepad. Save it as HTML and open in browser. And see the magic!!
var obj = {};
obj.attr = 'Attribute Data';
alert(obj.attr);
Posted by madhairsilence | September 6, 2013, 5:58 pm