Side navigation
Ticket #5946: show.html
File show.html, 0.7 KB (added by slubowsky, January 27, 2010 11:27PM UTC)
<!DOCTYPE html>
<head>
<title>JQuery Show looks bad in IE</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script>
<script type ="text/javascript">
$(document).ready(function() {
$('.it').show('slow');
});
</script>
<style type="text/css">
.it{
display: none;
}
</style>
</head>
<body>
<div class="it"><img src="empty.png" alt="png image with tranparency" /></div>
</body>
</html>
Download in other formats:
Original Format
File show.html, 0.7 KB (added by slubowsky, January 27, 2010 11:27PM UTC)
<!DOCTYPE html>
<head>
<title>JQuery Show looks bad in IE</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script>
<script type ="text/javascript">
$(document).ready(function() {
$('.it').show('slow');
});
</script>
<style type="text/css">
.it{
display: none;
}
</style>
</head>
<body>
<div class="it"><img src="empty.png" alt="png image with tranparency" /></div>
</body>
</html>