Im having some problems with a simple toggle in Safari. A really annoying flickering at the end of the hide animation.
Anyone?
CSS
#menu {
position:absolute;
left: 30px;
top: 30px;
padding: 30px;
background: #FF0;
}
#content {
width: 400px;
display: none;
}
Javascript
$(document).ready(function() {
$('#menu').click(function() {
$('#content').toggle(700);
});
});
Demos
Try changing the toggle line to: