Opened 11 years ago
Closed 11 years ago
#11213 closed bug (invalid)
Firefox 9.0.x
Reported by: | Owned by: | ||
---|---|---|---|
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>
Change History (4)
comment:1 Changed 11 years ago by
Owner: | set to [email protected]… |
---|---|
Status: | new → pending |
comment:2 Changed 11 years ago by
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/
comment:3 Changed 11 years ago by
Status: | pending → new |
---|
I have figured out the issue. It was actually on my end.
Thanks for your support though :D
comment:4 Changed 11 years ago by
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.