The code below is my $.ajax request, the return value should be a 'select' tag filled, though I keep getting an empty 'select' tag, I've checked the php page it calls to, even inputted variables via the URL to check it's working and it does work...on the php page but it wont forward the dropdown list along with the 'select' tag. anyone have any ideas?
function sendCategoryRequest() {
var URL = $('#indStore1').val();
var site = $('#site').val();
if ($.ajax({
type: "GET",
url: "../dashboard/sendgcr.php",
data: { URL: URL, site: site },
dataType: "html",
timeout: 4000,
success: function (response) {
if (response != "") {
document.getElementById('LCatC').innerHTML = response;
alert(response);
} else {
alert("Nothing came back :(");
}
}
})) {
} else {
alert("Proccessing Stage 2 Failed!");
}
}// end sendCategoryRequest
Here's my response (in HTML format):
<span style = 'float: left;
clear: left;
margin-right: 20px;'>
Category (Leaf):
</span>
<select id = 'LCat'
style = 'float: left;'>
</select>
It should be:
<span style = 'float: left;
clear: left;
margin-right: 20px;'>
Category (Leaf):
</span>
<select id = 'LCat'
style = 'float: left;'>
<option value = '(value recieved here)'>(Name recieved here)</option> // repeated until no more options present in the arrays
</select>
$.ajaxreturns a boolean? And why not use jQuery to populate theselect? – T.J. Crowder Feb 27 '12 at 9:46$.ajaxreturns a boolean? And if you can useinnerHTML, you can use jQuery'shtmlwhich is probably going to be more reliable (as it handles some browser eccentricities for you). Recommend reading the documentation. – T.J. Crowder Feb 27 '12 at 9:49