![]() |
|
|
#1
|
|||
|
|||
|
IE no like innerHTML? FF does...
Can anyone tell me why IE doesn't like this script?
My function looks like this... php Code:
php Code:
php Code:
Any ideas? Thanks |
|
#2
|
||||
|
||||
|
GD, your problem is not the innerHTML, but the onchange.
onchange="f(this.value);" does not work in IE. you should use something like: si = document.forms.form1.qty.selectedIndex; if (si > 0) { v = document.forms.form1.qty.options[si].value; } but that's from the top of my head
|
|
#3
|
|||
|
|||
|
That was it. Thanks frankm
|
![]() |
| Bookmarks |
| Thread Tools | |
|
|