> I've written this custom JS function to update some totals on 
> a page when a selector is changed, anyone have any ideas why 
> it would work in Firefox and Safari but not IE6?
> 
> aCase = 180;
> cases = document.getElementById('count_cases').value;

Is "count_cases" a SELECT object? If so, I don't know if you can access the
value directly within IE. You should be able to do this instead (in either
browser):

c = document.getElementsById('count_cases');
cases = c.options[c.selectedIndex].value;

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242689
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to