Here’s is my code
JavaScript
x
9
1
<script type="text/javascript">
2
function myFunction()
3
{
4
jAlert("Hello","How are you?");
5
alert("Hi");
6
jConfirm('Can you confirm this?', 'Confirmation Dialog');
7
}
8
</script>
9
When I run this code alert (hi) appears first and then jAlert appears, but the control remains with alert (The “Ok” button of jAlert doesn’t work) but once I press “Ok” in the alert box disappears along with the jAlert and jConfirm pops up. And also if I remove the alert, jAlert doesn’t even appear it directly displays the jConfirm dialog box. The same type of thing happen if I change the order of jAlert with jConfirm.
I kind of guess the problem is due to some asynchronicity, but is there a solution or how could this kind of problem be handled?
Advertisement
Answer
html
JavaScript
1
2
1
<input id="confirm_button" type="button" value="Show Confirm" />
2
Script
JavaScript
1
10
10
1
$(document).ready( function() {
2
3
$("#confirm_button").click( function() {
4
jConfirm('Can you confirm this?', 'Confirmation Dialog', function(r) {
5
jAlert('Confirmed: ' + r, 'Confirmation Results');
6
});
7
});
8
9
});
10
Also make sure you have below files placed
JavaScript
1
5
1
<script src="jquery.js" type="text/javascript"></script>
2
<script src="jquery.ui.draggable.js" type="text/javascript"></script>
3
<script src="jquery.alerts.js" type="text/javascript"></script>
4
<link href="jquery.alerts.css" rel="stylesheet" type="text/css" media="screen" />
5