In a Rails project with jqgrid 3.4.1. working fine, changing from jquery-1.3.1 to 1.3.2. breaks the grid:
In firefox I see 1 error:
this[0].innerHTML is undefined
html()()
jquery-1…235331467 (line 486)
(?)()()
happy_fl…235052909 (line 17)
(?)()()
jquery-1…235331467 (line 3032)
ready()()
jquery-1…235331467 (line 3031)
Here's the part of jquery that's breaking (1.3.2.js):
html: function( value ) {
484 return value === undefined ?
486 this[0].innerHTML.replace(/ jQuery\d+=”(?:\d+|null)”/g, “”) :
488 this.empty().append( value );