Skip to main content

Bug Tracker

Side navigation

#12546 closed bug (duplicate)

Opened September 17, 2012 02:27AM UTC

Closed September 17, 2012 02:35AM UTC

Last modified September 17, 2012 11:26AM UTC

jQuery1.8 .width(value) incorrect in Firefox

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

please check, jsfiddle - http://jsfiddle.net/xkhgT/

IE - 100%

Chrome - 100%

Safari - 100%

Firefox(1.8.0) - 104% <-

Firefox(1.7.2) - 100% <-

Attachments (0)
Change History (2)

Changed September 17, 2012 02:35AM UTC by rwaldron comment:1

resolution: → duplicate
status: newclosed

Duplicate of #12071.

Changed September 17, 2012 11:26AM UTC by mikesherov comment:2

In this case, you want to use

.css('width','100%')

instead of

.width('100%');

as .width() sets the content width... not the full table width.