$(function(){
    $('.must-confirm').click(function(e){
            var $this = $(this);
            e.preventDefault();

            if (confirm($this.text()+'?')){
                window.location = $this.attr('href');
            }
        });
});

