قمت باضافة select control لل modal الخاص بالنص ولكن ايضا يظهر لدي مشكلة في الكود
$(document).ready(function(){
$("#myModal").modal('show');
$('#form1').submit(function(e){
e.preventDefault();
var num1 = $('#text1').val();
var num2 = $('#text2').val();
if(num1 != null && num2 != null){
$('#demo1').html(num1);
// $('#demo1').css({ color:'red' });
$('#demo2').html(num2);
}
$("#sel1").change(function(e){
var nam1 = $('#sel1 option:selected');
$('#table_d').html(nam1.text());
});
// $("#sel1").change();
$("#myModal").modal('hide');
});
});