#4249 closed bug (invalid)
Odd string to number conversion
Reported by: | chrisbarr | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.4 |
Component: | css | Version: | 1.3.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
If I have a z-index of 100 on an item and I run the following code:
$("#myThing").css("z-index",$("#myThing").css("z-index")+100);
the new z-index is 100100 not 200 as I would have expected.
Change History (3)
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:3 Changed 12 years ago by
Component: | unfiled → css |
---|---|
Priority: | minor → low |
Note: See
TracTickets for help on using
tickets.
Several people have told me this is the expected behavor and not a bug. $(x).css() always returns a string. I need to use parseInt() to convert it to an integer.
Please close this ticket - sorry for the trouble.