summaryrefslogtreecommitdiff
path: root/js/confirm.js
blob: 070263289c525a20aa0ad3a38625c376e587c76b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$(document).ready(function()
{	
	
    $( ".delete").bind("click", function () {
	var e=confirm('Are you sure?');
	if(e)
	{
	return true;
	}
	else
	{
	return false;
	}   
 });
});