Category Archives: jQuery

jQuery Communicator Singleton (Manage & Cache ajax requests)

Written by Garry Lachman (Admin). Filed under JavaScript, jQuery. Tagged , , , , , , , , , , , , , . .

Hey,
I wrote this class for cache ajax request if the same request sent twice.
The second reason why i use this class is a like there is only one exit point
from the application.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
var Communicator =(function(){
    var instantiated;
    var retry = new Array();
    var cached_data = new Array();

    function init (){
        return {
            dispatch:function(url, callback){
                var self = this;
                if (Communicator.getInstance().cached_data[url])    {
                    callback(Communicator.getInstance().cached_data[url]);
                    return;
                }
                if (!retry[url])    {
                    retry[url] = 0;
                }
                var _rq = $.ajax({
                    url: url,
                    timeout: 30000,
                    success: function(_data){
                        Communicator.getInstance().cached_data[url] = _data;
                        callback(_data);
                    },
                    error: function(){
                        if (retry[url] < 3) {
                            retry[url]++;
                            dispatch(url, callback, retry[url]);
                        }   else    {
                            callback("");  
                        }
                    }
                });
            },
            cached_data: {}
        }
    }

    return {
        getInstance :function(){
            if (!instantiated){
                instantiated = init();
            }
            return instantiated;
        }
    }
})()

Using the class

1
2
3
4
5
6
7
8
9
10
11
12
Communicator.getInstance().dispatch(url,function(data){
    var error = false;
    try {
            data = eval("("+data+")");
    } catch(err)    {
        error = true;
    }

    if (!error)    {
        console.log(data);
    }                    
});

Have fun :)
Garry

Share

jQuery Plugin Template

Written by Garry Lachman (Admin). Filed under JavaScript, jQuery. Tagged , , , , , , . .

Hey,
I want to share some template that i usually use for starting new jQuery Plugin.
its base template that contains public methods, private methods, settings and custom events.

And here it come..

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
    (c) By Garry Lachman (http://www.garry-lachman.com), GPL License
*/


var PluginCustomEvents = {
    EVENT: "myPluginCustomEvent"
};

(function($) {
    var plugin = this;

    $.fn.pluginTemplate = function(method) {
        var methods = {
            init : function(options) {
                this.pluginTemplate.settings = $.extend({}, this.pluginTemplate.defaults, options);
                return this.each(function() {
                    var $self = $(this);
                    var self = this;
                       
                });
            }
        };

        var privateMethods = {
            privateMethod: function(){

            }
        };

        if (methods[method]) {
            return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
        } else if (typeof method === 'object' || !method) {
            return methods.init.apply(this, arguments);
        } else {
            console.error("No Method: " + method);
        }
    }

    $.fn.pluginTemplate.defaults = {
        defaultProperty: "defaultValue"
    };

    $.fn.pluginTemplate.settings = {};


})(jQuery);

Init plugin:

1
2
3
4
5
6
$("#target").pluginTemplate(); // rename it to your plugin name

// init with settings
$("#target").pluginTemplate({
    property1: "value"
});

Call public methods:

1
$("#target").pluginTemplate("method_name", "parameters");

Call private methods (inside the plugin):

1
privateMethods.privateMethod.call(this, parameters ...);

Have Fun ;)
Garry Lachman

Share

jQuery Simple Popup Rect Window

Written by Garry Lachman (Admin). Filed under jQuery. Tagged , , , , , , , , , , , . .

Hi,
I wrote a light and simple popup rect window with auto resize mode and buttons.

Popup Options

  • width, height = size of window
  • top, left = position in px set 0 set center
  • send_button = show send button
  • send_button_caption = send button caption
  • send_button_disabled = disbale send button
  • cancel_button = show cancel button
  • cancel_button_caption = disable cancel button

Popup Public Methods

  • enable_auto_resize = enable auto resize mode by content, for auto resize use Ben Alman jQuery resize
    event plugin from here: http://benalman.com/projects/jquery-resize-plugin/
  • change_height = change height (height in px, is using transcation)
  • set_content = send html content
  • get_content = get content rect
  • disbaled = disable and enable popup
  • send_button_disabled = disable and enable send button
  • add_click_event = add event to send and cancel buttons
  • close = close window

jquery.popup_rect.js file

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/*
(c) By Garry Lachman (http://www.garry-lachman.com), GPL License

Options:
* width, height = size of window
* top, left = position in px set 0 set center
* send_button = show send button
* send_button_caption = send button caption
* send_button_disabled = disbale send button
* cancel_button = show cancel button
* cancel_button_caption = disable cancel button

Methods
* enable_auto_resize = enable auto resize mode by content, for auto resize use Ben Alman jQuery resize
event plugin from here: http://benalman.com/projects/jquery-resize-plugin/
* change_height = change height (height in px, is using transcation)
* set_content = send html content
* get_content = get content rect
* disbaled = disable and enable popup
* send_button_disabled = disbale and enable send button
* add_click_event = add event to send and cancel buttons
* close = close window

*/


if (typeof Object.create !== 'function') {
    Object.create = function (o) {
        function F() {}
        F.prototype = o;
        return new F();
    };
}

var popup_rect = {
    init: function(options, elem)   {
        this.options = $.extend(true,{}, this.options, options);
       
        this.elem = elem;
        this.$elem = $(elem);

        this._build();
    },
    options:    {
        width: 100,
        height: 100,
        top: 0,
        left: 0,
        send_button: true,
        send_button_caption: "Save",
        send_button_disabled: false,
        cancel_button: true,
        cancel_button_caption: "Cancel"
    },
    _build: function()  {
        var _this = this;
        this.$elem.hide();
        this.$elem.addClass("popup_rect");
        this.$elem.css({width: this.options.width,
                height: this.options.height,
                top: this.options.top,
                left: this.options.left-this.options.width});

        this.$elem.append("<div id='popup_content' class='popup_rect_content'></div>");
        this.$elem.append("<div class='popup_rect_buttons'></div>");

        if (this.options.send_button)   {
            this.$elem.find(".popup_rect_buttons").append("<div id='popup_rect_send_button' class='popup_rect_button'>"+this.options.send_button_caption+"</div>");
        }
        if (this.options.cancel_button)   {
                        this.$elem.find(".popup_rect_buttons").append("<div id='popup_rect_cancel_button' class='popup_rect_button'>"+this.options.cancel_button_caption+"</div>");
                }

        this.$elem.find(".popup_rect_buttons").children().addClass("hand_cursor");
    },
    change_height: function(_h, _no_fx) {
        var _this = this;
        if (_no_fx) {
            this.$elem.height(_h);
            if (_this.options.top ==0 && _this.options.left == 0)       {
                _this.$elem.center({transition: 100});
            }
        }   else    {
            this.$elem.animate({
                height: _h
            }, 500, function(){
                if (_this.options.top ==0 && _this.options.left == 0)       {
                                _this.$elem.center({transition: 100});
                        }  
            });
        }
    },
    enable_auto_resize: function()  {
        var _this = this;
        this.$elem.find("#popup_content").resize(function(_event){
            _this.change_height(_event.target.clientHeight + 15 + _this.$elem.find(".popup_rect_buttons").height(),true);
        });
    },
    set_content: function(_content) {
        this.$elem.find("#popup_content").html(_content);
        this.$elem.show();
    },
    get_content: function() {
        return this.$elem.find("#popup_content");
    },
    add_click_event: function(_button, _function)   {
        var self = this;
        switch (_button)    {
            case "send":
                this.$elem.find(".popup_rect_buttons").find("#popup_rect_send_button").click(function(){
                    if (!self.options.send_button_disabled) {
                        _function();
                    }
                });
            break;

            case "cancel":
                                this.$elem.find(".popup_rect_buttons").find("#popup_rect_cancel_button").click(_function);
                        break;
        }
    },
    show_rect: function()   {
        this.$elem.show();
        if (this.options.top ==0 && this.options.left == 0)       {
                        this.$elem.center({transition: 100});
                }
    },
    disbaled: function (is_disbaled)    {
        if (is_disbaled)    {
            this.$elem.prepend("<div class='popup_rect_disbaled'></div>");
            this.$elem.find(".popup_rect_disbaled").css({width: this.options.width,
                                    height: this.options.height});
        }   else    {
            this.$elem.find(".popup_rect_disbaled").remove();
        }
    },
    send_button_disabled: function(is_disbaled) {
        this.options.send_button_disabled = is_disbaled;
        var fadeVal = is_disbaled ? 0.5 : 1;
        this.$elem.find(".popup_rect_buttons").find("#popup_rect_send_button").fadeTo('slow', fadeVal);
       
    },
    close: function(_this)  {
        _this = _this ? _this : this;
        _this.$elem.fadeOut('fast', function(){
                        $(_this).empty();
                });
    }

};

$.fn.extend({
  center: function (options) {  
       var options =  $.extend({ // Default values
            inside:window, // element, center into window
            transition: 0, // millisecond, transition time
            minX:0, // pixel, minimum left element value
            minY:0, // pixel, minimum top element value
            withScrolling:true, // booleen, take care of the scrollbar (scrollTop)
            vertical:true, // booleen, center vertical
            horizontal:true // booleen, center horizontal
       }, options);
       return this.each(function() {
            var props = {position:'absolute'};
            if (options.vertical) {
                 var top = ($(options.inside).height() - $(this).outerHeight()) / 2;
                 if (options.withScrolling) top += $(options.inside).scrollTop() || 0;
                 top = (top > options.minY ? top : options.minY);
                 $.extend(props, {top: top+'px'});
            }
               
            if (options.horizontal) {
                  var left = ($(options.inside).width() - $(this).outerWidth()) / 2;
                  if (options.withScrolling) left += $(options.inside).scrollLeft() || 0;
                  left = (left > options.minX ? left : options.minX);
                  $.extend(props, {left: left+'px'});
            }
            if (options.transition > 0) {
            $(this).animate(props, options.transition);
        } else {
            $(this).css(props);
        }
            return $(this);
               
       });     
  }
});

jquery.popup_rect.css file

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.popup_rect {
    background-color: #f7f7f7;
    border: 2px solid #949494;
    border-radius: 5px;
    position: absolute;
    z-index: 999999;
}
.popup_rect_content {
    padding: 20px;
}
.popup_rect_buttons {
    padding: 20px;
    position: absolute;
    bottom: 0px;
    right: 0px;
}
.popup_rect_button  {
    float: right;
    margin-left: 15px;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    padding-top: 2px; padding-bottom: 2px; padding-left: 5px; padding-right: 5px;
}

.popup_rect_disbaled    {
    position: absolute;
    background-color: white;
    z-index: 999;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

test.html file

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script type"text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.popup_rect.js"></script>
<link href="jquery.popup_rect.css" rel="stylesheet" type="text/css" />

<div id="test_div"></div>

<script>
var rect = Object.create(popup_rect);
rect.init({
    height: 200,
    width: 300
}, $("#test_div"));
rect.get_content().append("<span>The Content</span>");
rect.show_rect();

rect.add_click_event("cancel", function(){
    alert("cancel");
});

rect.add_click_event("send", function(){
    alert("send");
});
</script>

Have fun,
Garry Lachman

Share

Create Classes and Object in JavaScript & jQuery

Written by Garry Lachman (Admin). Filed under JavaScript, jQuery. Tagged , , , , . .

There is few ways to create javascript object and use its as class.
In this artical i will you my favorite way to implement javascript classes.
I will combaine jQuery in this example.

First of all lets create basic object:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var GarryObj = {
    init: function(options, target) {
        this.options = $.extends({}, this.options, options);
        this.$target = $(target);
        this._draw();
    },
    options:    {
        width: 100,
        height: 100,
    },
    _draw: function()   {
        this.$target.css({width: this.options.width,
                  height: this.options.height});
    }
}

We create here basic class that have 2 functions and one object to store the options.
the init class gets user options and the target (like html div).
then we merge the default options with the user options using jQuery extends function and
store the target as jQuery instance as $target.

The _draw function manipulate the target – here we build the ui by user options.

To create an instance of the class we need to add some code to the (i use to put it on js heaer file).

1
2
3
4
5
6
7
if (typeof Object.create !== 'function') {
    Object.create = function (o) {
        function F() {}
        F.prototype = o;
        return new F();
    };
}

Now lets create a instance of our class:

We need to add target div:

1
<div id="test_div"></div>

and than

1
2
var garryTest = Object.create(GarryObj);
garryTest.init({width: 150, height: 150}, $("#test_div"));

Have fun ;)
Garry Lachman

Share

7 best jQuery charts engines

Written by Garry Lachman (Admin). Filed under JavaScript, jQuery. Tagged , , , , , . .

A chart is a graphical representation of data, in which “the data is represented by symbols, such as bars in a bar chart, lines in a line chart, or slices in a pie chart”.[1] A chart can represent tabular numeric data, functions or some kinds of qualitative structures. [wikipedia]

List of jQuery based Charts



jqPlot

Computation and drawing of lines, axes, shadows even the grid itself is handled by pluggable “renderers”. Not only are the plot elements customizable, plugins can expand functionality of the plot too! There are plenty of hooks into the core jqPlot code allowing for custom event handlers, creation of new plot types, adding canvases to the plot, and more!



Highcharts

Highcharts is a charting library written in pure JavaScript, offering intuitive, interactive charts to your web site or web application. Highcharts currently supports line, spline, area, areaspline, column, bar, pie and scatter chart types.



GraphUp

GraphUp is a very flexible and lightweight jQuery (v1.4+) plugin to spice up your data tables. It visualizes the values using color, bar charts and bubbles.



Flot

Flot is a pure Javascript plotting library for jQuery. It produces graphical plots of arbitrary datasets on-the-fly client-side.
The focus is on simple usage (all settings are optional), attractive looks and interactive features like zooming and mouse tracking.
The plugin works with Internet Explorer 6+, Firefox 2.x+, Safari 3.0+, Opera 9.5+ and Konqueror 4.x+ with the HTML canvas tag



JS Charts

JS Charts is a JavaScript based chart generator that requires little or no coding. With JS Charts drawing charts is a simple and easy task, since you only have to use client-side scripting (i.e. performed by your web browser). No additional plugins or server modules are required. Just include our scripts, prepare your chart data in XML, JSON or JavaScript Array and your chart is ready!



PlotKit

PlotKit is a Chart and Graph Plotting Library for Javascript. It has support for HTML Canvas and also SVG via Adobe SVG Viewer and native browser support.



Emprise JavaScript Charts

EJSChart has been fully tested and verified to work properly in the following browsers. This list covers roughly 95% of browser market share



Have Fun ;)
Garry

Share

Custom Events in jQuery – bind & trigger

Written by Garry Lachman (Admin). Filed under JavaScript, jQuery. Tagged , , , , , , , , . .

Sometimes custom events can make the life more easy.
If you want to communicate between classes and other object on the page you can simply
trigger a custom event with data.

First of all we create data exchange div:

1
<div id="data_exchange"></div>

Now we need to listen the “data exchange” div to receive the events.

1
2
3
$('#data_exchange').bind('event_name', function(event, data) {
  alert(event + ": " + data);
});

We show alert popup when we receive the event “event_name”.

The next step is dispatch the event to the “data exchange”:

1
$('#data_exchange').trigger('event_name', 'our data');

Have a nice day ;)
Garry Lachman

Share

5 best jQuery Tooltips

Written by Garry Lachman (Admin). Filed under jQuery. Tagged , , , , . .

Hi,
Here is a list of 5 best jQuery tooltips i found.

jQuery tools

Simple & professional, full customized & working from box, positionings, effects, dynamic html code in tooltip.
As far i found, this is the most powerful tooltip i found.
jQuery Tools

 

jQuery plugin: Tooltip

Replacing standard tooltips is easy: Just include the script on the page, add a stylesheet, select the elements to tooltip and call the tooltip plugin.

 

qTip

qTip is an advanced tooltip plugin for the ever popular jQuery JavaScript framework.
Built from the ground up to be user friendly, yet feature rich, qTip provides you with tonnes of features like rounded corners and speech bubble tips, and best of all… it’s completely free under the MIT license!
qtips

 

HTML Tooltip

Inline HTML Tooltip lets you define rich HTML tooltips that are embedded directly inside your webpage and that appear when the mouse rolls over links on your page. The tooltip appears directly beneath the anchor link, and adjusts its position dynamically based on whether the mouse is too close to the window’s edges.

 

BEAUTYTIPS

BeautyTips is a simple-to-use balloon-help style tootip plugin. Any element on the page can be set to show a talk-balloon containing any text or HTML on hover, click, or any bindable event. These balloons are drawn dynamically using the canvas HTML 5 element, and options include corner radius, spike length and width, stroke width. The balloons can auto-position based on the most available area in the current display window or they can be positioned according to an array of preferences (just left or right for instance).

Have fun with the scripts ;)
Garry Lachman

Share

Dialog UI with jQuery

Written by Garry Lachman (Admin). Filed under jQuery. Tagged , , , , , , , . .

Very useful widget from jQuery package is the Dialog windows.
its the best replacement for alert command and its very easy to use.

How its work:
First of all we need to load the jQuery js files & the default UI Widgets css file (you can download the css file and customize it).
put the code in header (

1
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js" type="text/javascript"></script>

Than add the div with the title and the content

1
2
3
4
5
<div id="dialog" title="Basic dialog">

This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.

</div>

Init the jQuery dialog:

1
2
3
<script type="text/javascript">// <![CDATA[
 $(function() {     $( "#dialog" ).dialog(); });
// ]]></script>

The complete code:

1
2
3
4
5
6
7
8
9
10
11
12
13
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/jquery-ui.min.js" type="text/javascript"></script>

<script type="text/javascript">// <![CDATA[
        $(function() {
            $( "#dialog" ).dialog();
        });

// ]]></script>
<div id="dialog" title="Basic dialog">

This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.

</div>

Screenshot of jQuery Dialog UI Widget:

jQuery UI Dialog widget

jQuery UI Dialog widget

Have fun,
Garry Lachman

Share

The world of jQuery

Written by Garry Lachman (Admin). Filed under jQuery. Tagged . .

The world of jQuery

As you read at my last post only before few weeks i discover the power of
PHP Frameworks (i know, i`m 25 years old and feels like 60, lol) and now
the next step.

But before that, i always hate windows, i`m Linux user over 10 years but
in my last job i develop in ActionScript 3 (Flash).
after i leave there i never search tools that can replace the old and shitty
Flash.

jQuery to me new world of web development. now all looks so easy and stable
and i can remove the Windows install from the secound Hard Drive and say
bye bye to Adobe & Microsoft and work on Open Souce frameworks.

Some examples of jQuery, just look how easy it..

Adding Click Listener to div:

1
2
3
4
5
$(document).ready(function(){
$("a").click(function(event){
alert("Thanks for visiting!");
});
});

Animation:

1
2
3
4
5
6
7
8
9
10
11
12
13
$(document).ready(function() {
$("#clickhere").click(function() {
$("#animate1").animate({
height: "20px",
width: "50%",
padding: "5em",
marginLeft: "40px",
borderWidth: "5px"
}, 1000);
});
});

<input id="clickhere" type="button" value="Click Me!" />

Add/Remove css class to div:

1
2
3
4
$(document).ready(function() {
$("#orderedlist").addClass("red");
$("#orderedlist").removeClass("blue");
});

This examples is the the start of the world of jQuery.
Try it !!!

Have a nice day,
Garry Lachman

Share