Buonasera a tutti del forum. Vorrei un info, spero non stia chiedendo una cavolata Ho questo codice che restituisce il risultato dei campi presi da mysql in una alert. Vorrei che il risultato della jquery comparisse nella text 'barcode' invece che nell'alert. Qualcuno può dirmi come posso modificare il codice? Thanks a tutti
Codice:
<script src="jquery-1.9.1.min.js"></script>
<script>
function copia_js() {
$(document).ready(function() {
var response = '';
$.ajax({
type: "GET",
url: "Records.php",
async: false,
success: function(text) {
response = text;
}
});
alert(response);
});
}
</script>
</head>
<body>
<input name="barcode" type="text"/>
<input type="text" name="codice_1" onblur="copia_js()"/>