вместо
Сообщение от danik.js
|
var selectedOption = document.getElementById('id3').selectedOption;
document.getElementById('selectedOption').innerHTML = selectedOption.innerHTML;
|
сделал так
function kategory()
{
var selectedOption = $('#id3 option:selected').text();
document.getElementById('selectedOption').innerHTML = selectedOption.innerHTML;
}
почему не работает? вроде по
аналогии