JSFiddle - React, Tailwind, and code Playground

HTML

<script>
function alertme(franchisee_id, upsell_mapping_id) {
	if (confirm("Are you sure that you want to delete this territory code? Note that any other changes you have made to this franchisee will be lost."))
	{
		alert('deleting...');
	}

}
</script>
<a href="#" onclick="alertme(336, 50);">Delete</a>