script.js 389 B

1234567891011121314
  1. // Gestion de l'évènement change
  2. $('#events2-change-text').change(function(e) {
  3. $('#events2-notification-text').html(
  4. 'Nouvelle valeur : ' +
  5. $(this).val()
  6. );
  7. });
  8. $('input[type="radio"][name="events2-change-radio"]').change(function(e) {
  9. console.log($(this));
  10. $('#events2-notification-radio').html(
  11. 'Vous avez choisi : ' + $(this).val()
  12. );
  13. });