store the text from a form jquery

Solutions on MaxInterview for store the text from a form jquery by the best coders in the world

showing results for - "store the text from a form jquery"
Alessandro
29 Jul 2017
1$('form').submit(function(e) {
2    e.preventDefault();
3    var input = $('#search').val();
4    $('p').append(input);
5});