Hi all, Here are the lines from the jQuery library:
2191 // Check to see if an attribute returns normalized href attributes 2192 div.innerHTML = "<a href='#'></a>"; 2193 if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && 2194 div.firstChild.getAttribute("href") !== "#" ) { 2195 Expr.attrHandle.href = function(elem){ 2196 return elem.getAttribute("href", 2); 2197 }; 2198 } The error is caused by line 2195. Any help would be greatly appreciated. Thanks, Angela On Jun 18, 1:06 pm, Angela <angela.chu...@gmail.com> wrote: > Hi all, > > I am getting the above error which is part of the jQuery library when > running my application through SonicWall reverse proxy and all the > javascript using jQuery is no longer working. Has anyone had the same > problem or if you know of any suggestions on how to fix this? > > Thanks, > Angela