Hi i am developing a web app.I am retrieving options of the select box from database and i want to write these records to selectbox.My page structure is like that:

main.php=>there is a selectbox in this page <select id="my_select"></select>

retrieve_data.php=>i make a ajax call to this page and this page gets the phone numbers from the db and responses the data to main.php.

i get the data from the retrieve_data.php but when wanted to write these response to selectbox it fails.only empty selectbox appears.

My response like his:<option>blabla</option>......

and i wrote it like this: $("#my_select").html(response);

i alerted the response before writing in to selectbox and it alerts right options but when i tried to write them into selectbox it fails.can anyone help me thanks for advance...

link|improve this question

77% accept rate
Can you please verify that the response is a String and not (for example) an Array? – user113716 May 17 '10 at 16:34
Have you inspected the json response in Firebug? You should get a better idea of your response structure there. Or for your alert, try this: alert(typeof JSON.data.response); – user113716 May 17 '10 at 17:02
i did what you said and my response is a string. – cubuzoa May 17 '10 at 17:04
Should work. If you do $("#my_select").html('<option>blabla</option>');, does it work? Does JSON.data.response contain anything other than the <option> tags? – user113716 May 17 '10 at 17:39
yes if i write $("#my_select").html('<option>blabla</option>'); by hand it works.However when get it from other page it doesnt work.I copy the response and i wrote it to the $("#my_select").html('here'); and it works.I think the problem is about encoding or escape characters in the option tags – cubuzoa May 17 '10 at 17:44
show 4 more comments
feedback

3 Answers

up vote 2 down vote accepted

I'm going to go out on a limb and assume that the response is coming back in the form of a single member array. That would explain why the alert() shows the response, but it is not being inserted.

So, try this:

$("#my_select").html( response.join('') );

EDIT:

<option> tags in output were misspelled.

link|improve this answer
hi patrick my response type is JSON and i used your code :$("#my_select").html((JSON.data.resonse).join('')); but it didnt work – cubuzoa May 17 '10 at 16:46
feedback

Could be this bug if you are using Explorer.

link|improve this answer
i am using firefox – cubuzoa May 17 '10 at 16:52
feedback

Using the jQuery .html() function is correct, but I need to see more code to understand your problem. Particularly what is response equal to? It looks like, as others have mentioned, that the response variable is coming back as JSON rather than a simple string. Can you post what it looks like when you do an alert(response);?

link|improve this answer
function get_setting_numbers(type){ var type=type; $.ajax({ type: 'POST', url: 'functions/get_setting_numbers.php', data:'type='+type, dataType:'json', success: function(JSON){ if(JSON.data.result=="true"){ alert(JSON.data.response); $("#first_rule").html(JSON.data.response); }else{ open_message(JSON.data.response,0); } } }); } – cubuzoa May 17 '10 at 16:40
1  
you should post additional content relative to your question in the body of the question itself. with proper spacing, etc... to make it readable to those trying to help you. just edit the question and add the new content. – jordanstephens May 17 '10 at 18:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.