selectPromo.js 683B

1234567891011121314151617181920212223242526272829
  1. /* Selection Promo */
  2. //$("#container").hide();
  3. $("#selectPromo").change(function() {
  4. var promo = $(this).attr('value');
  5. $.ajax({
  6. type: "GET",
  7. url: "includes/listDoc.php",
  8. data: "promo="+promo,
  9. dataType: 'json',
  10. async: false,
  11. success: function(data){
  12. if (data.status==200) {
  13. $("#container").slideUp(400);
  14. $("#container").html(data.message);
  15. $("#container").slideDown(1200);
  16. }
  17. else {
  18. alert(data.message);
  19. }
  20. },
  21. error: function(){
  22. alert("Une erreur est survenue !");
  23. }
  24. });
  25. });