Modify ↓
Ticket #9054 (closed bug: duplicate)
jQuery failed to trigger the ready callback function on BlackBerry 4.6 web Browser
| Reported by: | Raymond | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | 1.next |
| Component: | unfiled | Version: | 1.5.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
To fix this I had to modify jQuery to check for a if a null value as returned from the getComputedStyle(div, null) method.
if ( document.defaultView && document.defaultView.getComputedStyle ) {
div.style.width = "1px"; div.style.marginRight = "0"; fix for blackberry 4.6
var cs = document.defaultView.getComputedStyle(div, null) {}; jQuery.support.reliableMarginRight = ( parseInt(cs.marginRight, 10) 0 ) === 0; }
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.

The above code was not properly formatted when this bug was created.
Here's a copy of the fix on jsFiddle - http://jsfiddle.net/9sDSf/