Side navigation
#14780 closed bug (invalid)
Opened February 11, 2014 11:59AM UTC
Closed February 28, 2014 08:38AM UTC
Bug in jquery-1.11.0.js
Reported by: | massio@gmx.de | Owned by: | massio@gmx.de |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.11.0-rc1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hello,
In "jquery-1.10.2.js" is all okay.
But in "jquery-1.11.0.js" by Internet Explorer 8:
The "animate()" by the first time calling! causes to call the function $(window).resize(function() {});
with kind regards,
Massio.
See below for an example:
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "http:www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="lib/jQ/jquery-1.11.0.min.js"></script>
</head>
<body>
<div id="TestId" style="position:absolute; width:100px; height:100px; background-color:#FC0;">123</div>
<script>
$('#TestId').mouseover(function() {
$(this).stop().animate({ width: ('70px') }, 500, function() {
$(this).animate({ width: ('175px') }, 800);
});
});
$(window).resize(function() {
alert('window-resize');
});
</script>
</body>
</html>
Attachments (0)
Change History (2)
Changed February 13, 2014 08:55PM UTC by comment:1
owner: | → massio@gmx.de |
---|---|
status: | new → pending |
Changed February 28, 2014 08:38AM UTC by comment:2
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
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 1.x (edge)" or "jQuery 2.x (edge)" version to ensure the issue still exists--you may need to change this to a specific version depending on the test case.
For the AJAX-related tests you can create a few fiddles and submit requests to addresses with "/show/light" added to the end of the URL; example: http://jsfiddle.net/m_gol/3hwjC/17/show/light/
To get you started, use the appropriate boilerplate:
Open the link and click to "Fork" (in the top menu) to begin.
Also, please read:
Additional resources: