I have tried to append <option> inside <select> using javascript by parsing data from XMl. Data parsed from xml properly,but it is not appending in <select>.
Also I want to show option as (image+text) format. How to do this....
My HTML code:
<form style="margin:20px 0">
<p>
<select id='mySelect' multiple="multiple" style="width:370px">
</select>
</p>
</form>
Javascript code:
$(document).ready(function(){
$.ajax({
type: "GET",
url: "newpersonal1.xml",
dataType: "xml",
success: function(xml) {
var select = $('#mySelect');
$(xml).find('value').each(function(){
var title = $(this).find('name').text();
alert(title);
select.append("<option value='"+title+"'>"+title+"</option>");
});
}
});
});
How to fix this issue and add image in select <option>.

<option>elements. You can use CSS to set a background image but it doesn't work in all browsers. Or you can simulate a<select>element with nested<div>elements or a<ul>or something. – nnnnnn Jan 23 '12 at 10:58