Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. $(function() {
  2.  
  3. $( "#dialog-confirm" ).dialog({
  4.  
  5. modal: true,
  6.  
  7. buttons: {
  8.  
  9. "Oui": function() {
  10.  
  11. $( this ).dialog( "close" );
  12.  
  13. },
  14.  
  15. "Non": function() {
  16.  
  17. $( this ).dialog( "close" );
  18. }
  19. }
  20.  
  21. });
  22.  
  23. });
  24.  
  25. </script>
  26.  
  27. <div id="dialog-confirm" title="Confirmation de paiement">
  28. <p><span class="ui-icon ui-icon-alert" style="float:left; margin:0 7px 20px 0;"></span>Avez vous effectué le paiement ? </p>
  29. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement