Yes or No confirm box using jQuery

Yes or No confirm box using jQuery

by m4xout

HTML

<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">

JavaScript

var $dialog = $('<div></div>');

function popup() {
	var title = "Question";
	var html = "Would you like to do this?";
	$dialog.html(html);
	$dialog.dialog({
		title: title,
		resizable: false,
		buttons: {
			" Yes ": function() {
				$( this ).dialog( "close" );
				yes_function();
			},
			" No ": function() {
				$( this ).dialog( "close" );
				no_function();
			}
		}
	});
}
popup();
function yes_function() {
    alert('Yes');
}
function no_function() {
    alert('No');
   
}