InvalidCharacterError in IE only

shadow8890

New Member
We have an order form that uses a ziplookup feature for when a zipcode is entered into a field, the city, county, state and zip are then entered into the same field.\[code\] <tr> <td class="formLabel" id="<%=prefix%>.ZipCodeLookup.label">Zip Code</td> <td class="formColon">:&nbsp;</td> <td class="formData"> <div id="zipOutput"></div> <input type="hidden" id="<%=prefix%>.city" name="<%=prefix%>.city" value="http://stackoverflow.com/questions/15913308/<%=City%>" /> <input type="hidden" id="<%=prefix%>.county" name="<%=prefix%>.county" value="http://stackoverflow.com/questions/15913308/<%=County %>" /> <input type="hidden" id="<%=prefix%>.state" name="<%=prefix%>.state" value="http://stackoverflow.com/questions/15913308/<%=State%>" /> <input type="hidden" id="<%=prefix%>.zip" name="<%=prefix%>.zip" value="http://stackoverflow.com/questions/15913308/<%=Zip %>" /> </td> </tr>\[/code\]The error on IE only is:lib.functions.dom.createInput// type=text name=shipping.ZipCodeLookup id=shipping.ZipCodeLookup // InvalidCharacterErrorlib.objects.window.LookupWidget.createInputField() // Unable to set property 'value' of undefined or null reference
 
Top