Side navigation
#8313 closed bug (worksforme)
Opened February 18, 2011 06:31AM UTC
Closed February 18, 2011 01:33PM UTC
$("p").hide() does't work in FF neither IE but do in Chrome and Opera
| Reported by: | fanzj1986@gmail.com | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | 1.next |
| Component: | effects | Version: | 1.5 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
The bug will occur also when using "animate()" in the base of jQuery1.5
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>why</title>
<style type="text/css">
</style>
</head>
<body>
<div class="Whole">
<p>test</p><span></span>
<button id="run">run</button>
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.min.js"></script>
<script type="text/javascript">
$(function(){
$("#run").click(function(){
$("p").hide();
});
});
</script>
</body>
</html>
Attachments (0)
Change History (1)
Changed February 18, 2011 01:33PM UTC by comment:1
| component: | unfiled → effects |
|---|---|
| priority: | undecided → low |
| resolution: | → worksforme |
| status: | new → closed |
Thanks for taking the time to contribute to the jQuery project by writing a bug report.
I can't reproduce what your report claims with this live test case
Please submit a reduced test case, which reproduces the issue you are experiencing, on http://jsfiddle.net. So that we can investigate this issue further. Also make sure to read the link given below, in order to provide a most useful bug report.
How to report bugs