script-bio.js 582 B

12345678910111213141516171819202122232425262728
  1. // $( function() {
  2. // $( "#popin" ).dialog({
  3. // autoOpen: false,
  4. // show: {
  5. // effect: "blind",
  6. // duration: 1000
  7. // },
  8. // hide: {
  9. // effect: "explode",
  10. // duration: 1000
  11. // }
  12. // });
  13. //
  14. // $( "#opener" ).on( "click", function() {
  15. // $( "#popin" ).dialog( "open" );
  16. // });
  17. // } );
  18. // $(".bouton").click(function(){
  19. // $("#modal .message").html();
  20. // $("#modal").addClass("open");
  21. // });
  22. //
  23. // $("#modal .mask, #modal a.close").click(function(){
  24. // $("#modal").removeClass("open");
  25. // return false;
  26. // });