Modify ↓
Ticket #5453 (closed bug: invalid)
Unspecified error when using JQuery with update panel
| Reported by: | rishabhm | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.4 |
| Component: | dimensions | Version: | 1.3.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
When using jquery 1.3.2version, we get "unspecified error" when some thing is updated through ajax in update panel.
Error point to this line of code in the jquery.1.3.2.min.js file. var G=this[0].getBoundingClientRect();
After using the fix provided in "Ticket #4918" for JQuery UI Development it works fine. But for that we have to redefine the "jQuery.fn.offset" function in seperate js file.
Can this fix be incorporated in the main JQuery 1.3.2.min.js file. This will be very helpfull.
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Below is the fix for redefining the "jQuery.fn.offset" function.
Originally By Brandon Aaron, part of the Dimension Plugin http://jquery.com/plugins/project/dimensions jQuery.fn.offset = function() {
};
function IESafeOffsetParent(elem) {
}