I am trying to add a drop down in a div dynamically[jQuery] but its not working. I want following structure:
<select id="surah_selection" style="position:relative; top:10px; left:25px">
<option id="1">Select Surah</option>
<option id="2" >Al-Baqra</option>
<option id="3">Al-Fatiha</option>
<option id="4">Al-noor</option>
<option id="5">Al-Tobah</option>
</select> <!--Surah selection ends -->
I have read this but it did not work.
Here is what I've tried:
$('#book_selection').change(function(){
alert("changed");
var option = document.createElement("option");
option.text = 'df';
option.value = 'df';
var temp = document.createElement('select');
temp.appendChild(option);
var root = document.getElementById('book_selection');
root.appendChild(temp);
alert("done");
});
Check the bellow fiddle. This will help you. Change them according to your need.
$('#book_selection').change(function(){
var newSelect=document.createElement('select');
var selectHTML="";
for(i=0; i<choices.length; i=i+1){
selectHTML+= "<option value='"+choices[i]+"'>"+choices[i]+"</option>";
}
newSelect.innerHTML= selectHTML;
document.getElementById('book_selection').appendChild(newSelect);
});
$(document).ready(function(){
var newSelect=document.createElement('select');
var selectHTML="";
/* for(i=0; i<choices.length; i=i+1){
selectHTML+= "<option value='"+choices[i]+"'>"+choices[i]+"</option>";
}*/
selectHTML+= "<option value='test'>test</option>";
newSelect.innerHTML= selectHTML;
document.getElementById('book_selection').appendChild(newSelect);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="book_selection"></div>
you can also use jquery
$('#book_selection').change(function() {
$("<select />").append($("<option>", {"value": "me", "text": "me"})).insertAfter($(this));
});
try this
<select id="surah_selection" style="position:relative; top:10px; left:25px">
<option id="1">Select Surah</option>
<option id="2" >Al-Baqra</option>
<option id="3">Al-Fatiha</option>
<option id="4">Al-noor</option>
</select>
to add a new option to the combobox you can try the following jQuery
<script>
function add(){
var str="<option id='5'>Al-Tobah</option>"
$("#surah_selection").append(str);
}
</script>
by call this function a new option will be added to your Combobox
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With