jquery-widgets

How to handle events in jquery widgets

Hi, I'm trying to write a jQuery widget following the model given here. Here is a snapshot of the widget: (function ($) { $.widget("ui.notification", { _create: function () { if (!this.element.hasClass("ntfn")) { this.element.addClass("ntfn"); } this.elTitle = this.elemen...