Search and Top Navigation
#5080 closed bug (notabug)
Opened January 20, 2010 04:48PM UTC
Closed April 11, 2011 08:02AM UTC
ie8 highlight errors after some time
Reported by: | paulvb | Owned by: | paulvb |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.effects.* (individual effect) | Version: | 1.8a1 |
Keywords: | highlight ie7 effect | Cc: | |
Blocked by: | Blocking: |
Description
i am using jQuery UI 1.8a1, and when i highlight a div in IE8 , I get the
error below error:
Invalid property value. jquery-ui.js, line 3976 character 3
See testcase:
<style>
div.x{ width: 100px; height: 100px; background: black; float: left;
margin-left: 50px; color: #fff }
</style>
<div class="x">test 1</div>
<div class="x">test 2</div>
<div class="x">test 3</div>
<script>
$(function() {
setInterval( function(){
$('.x').show('highlight', {}, 1000);
},3000);
});
</script>
Attachments (0)
Change History (5)
Changed January 27, 2010 01:54AM UTC by comment:1
Changed January 27, 2010 01:36PM UTC by comment:2
milestone: | TBD → 1.8 |
---|
I'm not sure that's it. jQuery UI Effects core has support for color names. Perhaps try background-color instead of background? A test page would help assess.
Changed February 02, 2010 11:53AM UTC by comment:3
I created a testcase. I also changed the css property to background-color. No success..
Changed March 27, 2011 01:44PM UTC by comment:4
owner: | → paulvb |
---|---|
status: | new → pending |
Made a fiddle of the testcase: http://jsfiddle.net/gnarf/GR7ht/ I was unable to reproduce any script errors in IE8 - Is this still a problem?
Changed April 11, 2011 08:02AM UTC by comment:5
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
The problem is the "background:black" part of the style. The color animation doesn't support color names.