Questions tagged [jconfirm]

`jConfirm` is a `jQuery` plugin to make pretty confirmation boxes.

jConfirm is a jQuery plugin to make pretty confirmation boxes. It is released under the GNU GPLv3 licence.

The plugin enables you to create a basic dialogue boxes in just a few lines of JavaScript.

See more:

18 questions
143
votes
9 answers

Yes or No confirm box using jQuery

I want yes/No alerts using jQuery, instead of ok/Cancel button: jQuery.alerts.okButton = 'Yes'; jQuery.alerts.cancelButton = 'No'; jConfirm('Are you sure??', '', function(r) { if (r == true) { //Ok…
Sushanth CS
  • 2,412
  • 3
  • 23
  • 23
1
vote
1 answer

jquery alert plugin , jConfirm

I got this script which works perfect when i am not using jquery's alert plugin. But i need to use alert plugin and after learning from a tutorial i implemented it. But the script does not seem to work. When I run this…
dividedbyzero
  • 187
  • 3
  • 16
0
votes
1 answer

jConfirm doesn't return true or false

Here is what I'm trying to do.... function myFunction() { var x=jConfirm('Can you confirm this?', 'Confirmation Dialog', function (r) { y=r; alert(y); }); alert(x); } Why does alert(x) runs first(I'm beginner in javascript) and…
dividedbyzero
  • 187
  • 3
  • 16
1
2