I am getting "Unspecified error." from IE9 users. The error points to line 4651 in the uncompressed v1.7.2 jquery.js file.
- focus: function( elem ) {
- return elem === elem.ownerDocument.activeElement;
- }
The call appears to come from the highlighted line in this code:
- var shippingDetailsFocused;
- $(document).ready(function(){
- shippingDetailsFocused = $(':text:focus').first();
- $(':text').focus(function(){
- shippingDetailsFocused = $(this);
- });
- });
I can't reproduce the error myself, but we get 10 - 15 of these every day via our javascript error logging.
Any ideas what is causing this? So far I have only seen it from IE9 users.