Veliki pozdrav, treba mi mala pomoc.
"function" mi vraca podatak iscitan iz tabele sa razmakom ispred i naravno pravi problem u "select" listi.
Ovo je neki primer:
<!DOCTYPE html>
<html>
<body>
<form>
Select your favorite fruit:
<table>
<tr>
<td>
1
</td>
<td>
orange
</td>
</td>
<td>
<button type="button" onclick="myFunction(this)">Try it</button>
</td>
</tr>
</table>
<select id="mySelect">
<option value="apple">Apple</option>
<option value="orange">Orange</option>
<option value="pineapple">Pineapple</option>
<option value="banana">Banana</option>
</select>
</form>
<script>
function myFunction(td) {
selectedRow = td.parentElement.parentElement;
document.getElementById("mySelect").value= selectedRow.cells[1].innerHTML;
}
</script>
</body>
</html>
Gde sam pogresio???????????
HVALA
|