I have the following:
.ui-dialog-body {
position: relative; /* Needed for sliding left, right */
min-height:60px;
padding: .5em 1em;
}
.ui-dialog-body.slideLeft {
left:-500px;
-webkit-transition: left .5s linear;
-webkit-transition-delay: .2s;
-moz-transition-property: left;
-moz-transition-duration: .5s;
}
When the user clicks an item which requires loading, the class slideLeft is added which slides the div out of view. This works great in webkit (safari, chrome) but not in FireFox 4 beta.
Any ideas why that is?