Hello,
I would like to implement the confirm functionality in javascript with the jqwidgets. The structure is like below.
var r=confirm(“Press a button!”);
if (r==true)
{
x=”You pressed OK!”;
}
else {
x=”You pressed Cancel!”;
}
Is it possible for to do like this using the jqwidgets?