I want to change the name of the jQuery interface dialog box in the open event.
open
I tried the following:
open: function (event, ui) { this.title = "new name"; }
but it didn’t work, and the title remained the same.
you can use the option method as described here :
option
open: function (event, ui) { $(this).dialog("option","title","new name"); }
must work