I have connected to a mysql database and I am trying to use jquery to populate a drop down menu using data from the database and JSON.
I do not have much experience with JSON, but I have read many articles and searched the web for tutorials.
In my PHP to connect to the database, the last lines format and output the JSON correctly:
$response = $_GET["jsoncallback"] . "(" . json_encode($colors) . ")";
echo $response;
In the javascript, I use:
$.getJSON("db.php?jsoncallback=?", function(data){ //loop that populates the drop down });
I have jquery set up to grab the JSON and populate the drop down, which is also working correctly. However, the JSON data that is created in the PHP is outputted at the top of my generated page.
i.e.,
([{"color":"Purple"},{"color":"Red"},{"color":"Blue"},{"color":"Pink"},{"color":"Yello"}])
How do I still access the jsoncallback without outputting the JSON on my page?