Bootstrap confirmation Sample

HTML

<script src="http://ethaizone.github.io/Bootstrap-Confirmation/bootstrap-confirmation.js"></script>
<br/>
<br/>
<br/>
<br/>
<br/>

<a href="#Delete" id="try_it" class="btn btn-primary btn-large" title="Continue?" data-toggle="confirmation" ><span title="Excluir o projeto">Try</span></a>

JavaScript

$('[data-toggle="confirmation"]').confirmation({
  'onConfirm': function() {
    alert("dfgdfg");
  },
  btnOkLabel: "&nbsp;Yes",
  btnCancelLabel: "&nbsp;No"
});