Skip to main content

Bug Tracker

Side navigation

#14187 closed bug (notabug)

Opened July 26, 2013 09:01AM UTC

Closed July 26, 2013 12:48PM UTC

Last modified August 16, 2013 04:46PM UTC

jQuery-1.7.2 Not working for IE8

Reported by: anonymous Owned by:
Priority: undecided Milestone: None
Component: unfiled Version: 1.10.2
Keywords: Cc:
Blocked by: Blocking:
Description

Hello,

In my project i used 'jquery-1.7.2' new update before i used 'jquery-1.3.2' for crossbrowser changes, but after changed jquery-1.7.2 my project does not working on IE8(Document Mode IE8 Standards).

Please help me to solve this issue.

Thanks & Regards,

Yuvraj

Attachments (0)
Change History (2)

Changed July 26, 2013 12:48PM UTC by dmethvin comment:1

resolution: → notabug
status: newclosed

Ask for help on a forum, this isn't a bug report.

Changed August 16, 2013 04:46PM UTC by john.sanford@tcs.com comment:2

The problem you were having was a css-related jquery issue. I noticed that only in ie8 Standards Mode my tables were not resizing properly and after debugging noticed that my css for the table had a duplicate entry. There must be a difference in the way that jquery.<object>.css("border-left-width") responds in ie8 as the following css renders correctly in ie7 and ie9 Standards Modes, but not in ie8 Standard Mode:

table {
 border: 8px solid #C2DDEE;
 border: none;
}