Good day, I just want to know how do you print out the value you entered on the text field via alert box, I'm new to jquery and I don't have any idea what am I doing. Any help would be appreciated. Thank you
             <form action="" align="center" method="post">
             Name:<br>
             <input type="text" name="fullname" required>
             <input type="submit" onclick="printOut();">
             </form>
             $(document).ready(function(){
             $('form').submit(function(e){
             e.printOut();
            alert ("Hi "+$("input[name="fullname"]").val()+");
 
     
     
    