that I''d like to voice that I have found. My apologies if these have already been brought up a bazillion times Concerning IE6 & 7 it seems that $(''div'').update does not work with some form objects - namely hidden fields. I can''t make all of the code public right now because its for a client but IE6 & 7 says the error is on line 1755 of prototype.js (v 1.5.1.1) it happens when i''m doing a reset function after it has been determined if the user has entered invalid data (i.e. too large a number where the input field can''t be limited to a set integer because of math performed on the entered number ie 123456 is ok but 654321 is too high) here is code that i know works correctly in FF,IE 6 & 7 alert(''1''); $(''input_1'').value =''''; // input type = text alert(''2''); $(''span_1).update("0"); // this is a span alert(''3''); $(''span_2'').update("0"); // this is a span alert(''4''); $(''hidden_1'').value = "0"; // input type=hidden alert(''5''); $(''span_3'').innerHTML = "0"; // another span, yet this one does not want to update like the other two alert(''6''); $(''num_miles'').value ="0"; // input type=hidden I''m not sure what is going on, I''m new to pt so maybe i''m missing something to queue these up easier, i dunno, but if anyone cares to expound on this i would be most gracious. thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---