Enter event-preview function

by Alin Guta

HTML

<input type="text" />

<br><br>
    
<p id="preview"></p>

JavaScript

$('input').bind('keypress', function(e) {
    
    var input = $('input').val()
    
    if(e.keyCode==13){

        if(input == 'no' || input == 'nope'){

        $('#preview').html("I don't come by a recommendation!").fadeIn(800);

        } else {
            
        $('.fifthp').html('I come to you by ' + '<strong style="color:#fd8a64;">' + $(this).val() + '</strong>' + "'s recommendation.").fadeIn(800); //FadeIn text in letter

        }
    }
});