serverSync plugin 

$.fn.serverSync = function(options) {
    return this.each(function () {
        var $this = $(this);
        var obj   = new ServerSync(this, options);
        $this.data('serverSync', obj);
    });
};