Side navigation
#14245 closed bug (duplicate)
Opened August 10, 2013 05:44PM UTC
Closed August 10, 2013 08:24PM UTC
FadeIn problem in 1.10.2
Reported by: | rdcapx@gmail.com | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.10.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I upgraded from 1.6.2 and fadeIn stopped working. The only change I make to the code is substituting 1.10.2 for 1.6.2. I know jquery is working because there is a slideToggle right after the fadeIn and that works in bot 1.6.2 and 1.10.2. Here is the pertinent code:
<script src="_scripts/jquery-1.6.2.min.js"></script>
</head>
<body>
<div id="clickMe">Show me a pleasant scene from the neighborhood</div>
<div id="picframe"><img src="_images/scene1.jpg"></div>
<script>
$(document).ready(function() {
$("#clickMe").click(function() {
$("img").fadeIn(1500);
$("#picframe").slideToggle("slow");
});
});
</script>
Attachments (0)
Change History (1)
Changed August 10, 2013 08:24PM UTC by comment:1
resolution: | → duplicate |
---|---|
status: | new → closed |
Duplicate of #14244.