The simple code below describes my question (at least I want it that way):
$.widget("ui.mydialog", $.ui.dialog, { _create: function() {
I tried calling $.ui.dialog.prototype._create() from the above create method, but getting the following error in Firebug:
this.element is undefined this.originalTitle = this.element.attr('title'); jquery...5667348 (line 5864)
What else can you call this "super" method?
jQuery UI version 1.8.8
javascript jquery override inheritance jquery-ui
Zardoz
source share