I’ve been having some problems in Firefox with observe_field.
Everything seems to work fine in IE, however when I try to observe a
select box nothing seems to happen in firefox. I downloaded FireBug to
investigate, and an error in prototype.js is raised
2751 getValue: function(element) {
2752 element = $(element);
2753 var method = element.tagName.toLowerCase();
2754 return Form.Element.Serializersmethod;
2755 },
Below is the error displayed in FireBug:
element has no properties
getValue(null)prototype.js (line 2753)
getValue()prototype.js (line 2875)
initialize(“paragraph[letter_type_id]”, 0.25, function())prototype.js
(line 2853)
create()prototype.js (line 37)
var method = element.tagName.toLowerCase();
I’ve read that this may have to do with how DOM is handled in IE vs
Firefox. Anyone have any suggestions?