Side navigation
#9531 closed bug (worksforme)
Opened June 06, 2011 07:14PM UTC
Closed March 27, 2012 03:16AM UTC
calling show() before attaching to DOM fail on chrome or IE
Reported by: | testerez@gmail.com | Owned by: | rwaldron |
---|---|---|---|
Priority: | high | Milestone: | 1.next |
Component: | effects | Version: | 1.6.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
<html>
<head>
<script type="text/javascript"src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
$('<div class="hidden"/>')
.show()
.text('You can see me withFirefox')
.appendTo('body');
});
</script>
<style>
.hidden{display:none;}
</style>
</head>
<body>
</body>
</html>
Confirmed.
http://jsfiddle.net/rwaldron/4T6gj/