I am using this code to add popup confirmation window on action button through jquery code
<script>
jQuery(document).ready(function($) {
$("table.shop_table.subscription_details a.cancel").on("click", function(e) {
var doit = confirm("Are you sure you want to do it ?")
if (!doit) {
e.preventDefault()
}
})
})
</script>
I am trying to figure out way to customize it so i can change the name of cancel and ok button.