Ok, this is my very first attempt at Ajax and its driving me insane as I really cant get my head round it. What im trying to do is populate the first box with the customers
Maybe try live
instead of on
. It is deprecated but I found out is more likely to work when element is not loaded.
$$('#customer').on('change', function (){
changed to
$('#customer').live('change', function (){
Looks as if you are creating an array of JSON objects on each itteration in select.php.
Below the array is generated in PHP and then JSON encoded, which in my option is the best way to generate JSON strings.
// select.php
$id = $_GET['customerId'];
$sql = 'SELECT * FROM vehicles WHERE customerID = ' . $id;
$result = $db->query($sql);
$json = array();
while ($row = $result->fetch_assoc()) {
$json[] = array(
'id' => $row['vehicleId'],
'name' => $row['vehicleId'] // Don't you want the name?
);
}
echo json_encode($json);
// Test.php
$('#customer').on('change', function (){
$.getJSON('select.php', {customerId: $(this).val()}, function(data){
var options = '';
for (var x = 0; x < data.length; x++) {
options += '<option value="' + data[x]['id'] + '">' + data[x]['name'] + '</option>';
}
$('#vehicle').html(options);
});
});
Your customer select's change event is being assigned before the select is rendered on the page. Move the event handler into document.ready:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#customer').on('change', function (){
$.getJSON('select.php', {customerId: $(this).val()}, function(data){
var options = '';
for (var x = 0; x < data.length; x++) {
options += '<option value="' + data[x]['id'] + '">' + data[x]['reg'] + '</option>';
}
$('#vehicle').html(options);
});
});
});
</script>
I also changed $$('#customer')
to $('#customer')
. Finally, fix your SQL injection vulnerability:
$sql = 'SELECT * FROM vehicles WHERE customerID = ' . (int)$id;
Casting the ID as a int will prevent SQLi here, but you should consider using a Prepared Statement.
The error you mentioned in the question looks unrelated to your code. It looks related to a Chrome extension.
Not part of the problem but here is an improved version of your code that builds the vehicle options:
$.getJSON('select.php', {customerId: $(this).val()}, function(data){
var vehicle = $('#vehicle');
for (var x = 0; x < data.length; x++) {
vehicle.append(new Option(data[x].reg, data[x].id));
}
});
The improvements are:
new Option(...)
and .append()
to create the options and add them to the vehicle select. Building elements like this is better than creating raw HTML because this way, you don't have to worry about characters such as <
and >
in the data - which would break your HTML with the current code.data[x].id
) instead of data[x]['id']
.