Hola buenas tengo un formulario con un botón submit
el cual cuando hago click me lanza una alerta siguiendo el siguiente código.
<script> $(document).on('submit',"#formcontract",function(e) { var url = "mira.php"; // the script where you handle the form input. $.ajax({ type: "POST", url: url, data: $("#formcontract").serialize(), // serializes the form's elements. success: function(data) { alert(data); // show response from the php script. } }); e.preventDefault(); // avoid to execute the actual submit of the form. }); </script>
Bien pues si pongo este formulario dentro de una ventana modal, el botón submit
ya no funciona
¿Alguien me podría decir por qué?