Skip to main content

Bug Tracker

Side navigation

#7724 closed bug (invalid)

Opened December 08, 2010 03:22AM UTC

Closed December 08, 2010 04:08AM UTC

Last modified March 13, 2012 07:43PM UTC

.attr() issue in IE8

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

Problem in jQuery v1.4.4

.attr({class:"bigNews" , title:"myTitle"})

doesn't work in IE8, but Chrome works fine.

under IE8, it must write like this

.attr({"class":"bigNews" , "title":"mytitle"})
Attachments (0)
Change History (1)

Changed December 08, 2010 04:08AM UTC by dmethvin comment:1

resolution: → invalid
status: newclosed
class
is a reserved word in Javascript. Some browsers allow it as a bareword but you should always quote it or use
className
. (That is why the property is called
className
, to get around the reserved word problem.)