I am using the Javascript alert box:
function shareConfirm() {
if(!confirm('Are you sure want to unshare?')) return false;
}
However, the title give the URL says and the alert box but I want to edit the title. It turns out javascript title can't be edited. So I best bet is to use jquery simple alert box with the same css as the custom javascript alert box. How can I do that?