Side navigation
#11213 closed bug (invalid)
Opened January 23, 2012 08:44PM UTC
Closed January 24, 2012 12:01AM UTC
Firefox 9.0.x
Reported by: | zach@mycyberit.com | Owned by: | zach@mycyberit.com |
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | effects | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Seems like Firefox 9.0.x is incompatible or has slight issues with JQuery.
For example, the .fadeIn and .fadeOut do not work properly as they do now show up once clicked. Example of the code I am using is below:
<script>
$('#button').click(function() {
if( $("#sub1").is(":hidden") ) {
$('#sub1').fadeIn('slow')
}
else {
$('#sub1').fadeOut('slow')
}
});
</script>
Attachments (0)
Change History (4)
Changed January 23, 2012 09:53PM UTC by comment:1
owner: | → zach@mycyberit.com |
---|---|
status: | new → pending |
Changed January 23, 2012 11:05PM UTC by comment:2
Hello,
I have tested this in jQuery Edge and it seems to be working. Here is the link so you can view it. Also, Instead of text, I am using images.. Let me know if that is needed... http://jsfiddle.net/mXaPz/
Changed January 23, 2012 11:36PM UTC by comment:3
status: | pending → new |
---|
I have figured out the issue. It was actually on my end.
Thanks for your support though :D
Changed January 24, 2012 12:01AM UTC by comment:4
component: | unfiled → effects |
---|---|
priority: | undecided → low |
resolution: | → invalid |
status: | new → closed |
Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket.
Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/ Open the link and click to "Fork" (in the top menu) to get started.