I found the same error.. But it does not immediately appear . See my test case:
<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> On 5 jan, 08:11, kevin <kevincastigli...@gmail.com> wrote: > i am using jQuery UI 1.8a1, and when i highlight a div in IE8 , I get the > error below error. I copied the code from script debugger. > any ideas how to fix this? > > <script type="text/javascript" > src="/static/js/jquery-ui-1.8a1/ui/jquery-ui.js"></ > > jQuery(this).effect("highlight", {'color':'#FF0000'}, 700); > > Invalid property value. jquery-ui.js, line 3976 character 3 > > fx.elem.style[attr] = 'rgb(' + > Math.max(Math.min(parseInt((fx.pos * (fx.end[0] - fx.start[0])) > + fx.start[0], 10), 255), 0) + ',' + > Math.max(Math.min(parseInt((fx.pos * (fx.end[1] - fx.start[1])) > + fx.start[1], 10), 255), 0) + ',' + > Math.max(Math.min(parseInt((fx.pos * (fx.end[2] - fx.start[2])) > + fx.start[2], 10), 255), 0) + ')';
-- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.