how to create a modal box using jquery code example
Example 1: how to display an image on text click using jQuery
how to use text onclick to display images in javascript
Example 2: jquery dialog button text set by variable
$("#dialog_box").dialog({
autoOpen: false,
modal: true,
resizable: false,
buttons: [{
text: "Ok",
"id": "btnOk",
click: function () {
},
}, {
text: "Cancel",
click: function () {
},
}],
close: function () {
}
});
var newLabel = "Updated Label";
$("#btnOk").html('<span class="ui-button-text">'+ newLabel +'</span>')