<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<p>Entrez une valeur: <input type="text" id="fval"></p>

    $(document).ready(function() {
      $("#fval").keypress(function(e) {
        if(e.which == 13) {
            if (this.value == "yes") {
                alert('Fonction exécuter');
            }
            else {
                alert('Alert!');
            }
            }
        });
    });

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.