tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 jQuery > Basic > JS classes and callbacks

JS classes and callbacks 

The following example shows how to define class templates in java script and its instantiation. In java script there is no difference between 'function' and 'class template'. Unlike 'java' constructors we need to explicitly specify return type of 'constructor function'. Its done with return this statement. It has two public methods 'show' and 'loop'. The first one accepts a string as argument and shows an alerts, the second accepts a reference to other java scripts function as argument. Usually these references are called 'callback' functions. The 'loop' method invokes the 'callback' function. It also shows creating global references. The symbol '$$$' acts as an alias to 'Message' class template (window.$$$ = Message).

File Name  :  
source/JQUERY/basic/classes.html 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
01<html>
02 <head>
03 <script type="text/javascript">
04//JS way of defining class template
05function Message(defaultMsg) {
06 
07    this.show = function(msg) {
08        alert(msg + ":" + defaultMsg);
09    }
10 
11    this.loop = function(callback) {
12        if (typeof callback == "function") {
13            callback();
14        }
15    }
16 
17    return this;
18}
19 
20window.$$$ = Message;
21 
22function test() {
23 
24    //JS way of instantiating 'Message' class
25    //new keyword is optional while creating instance.
26    //var msg = new Message("Default")
27    var msg = Message("Defaulter")
28    msg.show("Hai");
29 
30 
31    $$$("First").show("Second");
32    $$$("First").loop(function() {
33        alert("Loop callback");
34    });
35    //Message("Ding").show("Dong");
36}
37 
38 </script>
39 </head>
40 <body>
41 
42    TEST <input type="button" value="Test" onclick="test()" />
43 
44 </body>
45 </html>





 
  


  
bl  br