Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/03/2012, 16:50
panchompc
 
Fecha de Ingreso: diciembre-2011
Ubicación: Chile
Mensajes: 36
Antigüedad: 12 años, 5 meses
Puntos: 2
Respuesta: cargar datos con Ajax y php

ya lo sulucione

Código Javascript:
Ver original
  1. <script language="javascript">
  2.    $(document).ready(function() {
  3.     $("#S_talla").change(function() {
  4.         $('#S_talla option:selected').val();
  5.         var talle = $(this).val();
  6.         $.post("tallas.php", { talle: talle,idProducto: '<?php echo $row_pro["idProducto"]; ?>' }, function(data){
  7.             $("#tallas").html(data);
  8.         });
  9.     });
  10. });
  11. </script>