css - Jquery Ui Sortable showing broken image in IE8 -
I have a sorted query of images, i.e. items IMG (due to this fact this tab is under control and a horizontal List, list item can not be sorted on, I can not just work it), which works completely everywhere except IE8 (even in standard compliance mode) , Where the placeholder shows a broken image, no css settings I have that I can use to make invisible placeholder in IE8. I have tried
Visibility: hidden; I have tried to set Content: URL (transparent .gif);
Neither do any effect what should I do to fix this? Any explanation on how I can see I'm seeing I can not see IMG as DOM Explorer (or whichever has been called in IE8 Developer Tools) as CSS, because as soon as I leave the mouse I disappeared and DOM
Edit: The problem is duplicated here
I simplified my example, the other problem is that the entire tab is scrolled, By slider Controlled Change
Display: Inline;
to
float: left;
does not work because now we do not have a scrolling list of items. For some strange reason, when there is a scrollbar and you use "Lee" instead of "IMG" as a target, then the sortable work stops
an updated example Here it is.
where placeholder shows a broken image The CSS setting is that I can use to make the placeholder invisible in IE8. I have tried
A broken image appears because jQuery creates UI (in your case) to resolve this problem for an IMG element without a source optet set placeholder :
- Do not set the placeholder option or
-
Change something to your .showplace class
.showplace {margin : 20px; Hidden flurry; Width: 0; Height: 0; The above code (non-existent) will hide the image content above, but the element will be visible.BTW
Comments
Post a Comment