Tengo el siguiente problema:
tengo este formulario,
Código HTML:
<form method="get" action="javascript:opciones();"> <SELECT NAME="selCombo" SIZE=1"> <OPTION VALUE="Pepe">Pepe</OPTION> <OPTION VALUE="Juan">Juan</OPTION> <OPTION VALUE="Maria">Maria</OPTION> </SELECT> <input type='submit' name='submit' value='OK' style='font-family: Arial; font-weight: bold;' /> </form>
Código HTML:
<script language="javascript"> function opciones(){ /// Aqui podemos enviarle alguna variable a nuestro script PHP /// var variable_post="Mi texto recargado"; /// Invocamos a nuestro script PHP $.post("misopciones.php", { variable: variable_post }, function(data){ /// Ponemos la respuesta de nuestro script en el DIV recargado $("#principal").html(data); }); } </script>