/* get all form and loop */$( "form" ).each( function () { /* addEventListener onsubmit each form */ $( this ).bind( "submit", function (event) { /* return false */ event.preventDefault(); var form = event.target; /* display each props of forms */ console.log( form ); // object formHTML console.log( "form id: " + form.id ); console.log( "form action: " + form.action ); console.log( "form method: " + form.method ); } );});
Demorepl.it
Top comments(0)
Subscribe
For further actions, you may consider blocking this person and/orreporting abuse