I need to send a new variable, using jQuery , to the neighborhood.php file, how do I?
I have a hidden input that contains the idcl variable that contains client data:
<input type="hidden" name="idcl" id="idcl" value="<?php echo $cliente; ?>" size="3">
How do I pass these data to the routine below?
Follow the Java Script code:
$.post("bairro.php",
{cidade:$(this).val()},
function(valor) {
$("select[name=bairro]").html(valor);
...