#5038 closed bug (invalid)
IE error - Invalid argument.
Reported by: | FDisk | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | unfiled | Version: | 1.3.2 |
Keywords: | Cc: | FDisk | |
Blocked by: | Blocking: |
Description
I got IE8
error jquery-1.3.2.js line 1061 character 4
And i found the solution
line: 1060 -- if ( set ) ++ if ( set && value != 'NaNpx')
Change History (4)
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
-- if ( set ) ++ if ( set && value != 'NaNpx')
sorry for dabble posts
comment:3 follow-up: 4 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
If the incoming argument is "NaNpx" there is a problem with the calling code.
comment:4 Changed 12 years ago by
Replying to dmethvin:
If the incoming argument is "NaNpx" there is a problem with the calling code.
I think this is a bug and exists because of IE's CSS-rendering faults. For example, if element has a min-height defined, then height is set to NaNpx, which in itself throws error in IE. Other browsers are fine.
Style-generated errors should be picked up at code-level, themers shouldn't be made responsible for making features work or not.
line: 1060