Ver Mensaje Individual
  #11 (permalink)  
Antiguo 28/10/2015, 06:28
hechicerd0
 
Fecha de Ingreso: julio-2015
Ubicación: Barcelona
Mensajes: 93
Antigüedad: 9 años, 3 meses
Puntos: 3
Respuesta: Llamar a un archivo php por ajax

El botón tiene que ser así:

<button class="btn btn-primary" id="BOTONPARAABRIRMODAL">
<i class="entypo-plus">Autorizar Matrículas</i>
</button>
El script tiene que estar fuera del modal, abajo del botón:

Código Javascript:
Ver original
  1. <script type="text/javascript">
  2. $("#BOTONPARAABRIRMODAL").click(function(){
  3. $.ajax({
  4.   method: "POST", //Elige get o post
  5.   url: "contratos3.php",
  6.  
  7. })
  8.   .done(function( msg ) {
  9.    $("#mbody").html(msg);
  10.  $("#myModal2").show();
  11.   });
  12.  });
  13.  </script>