Opened 11 years ago
Closed 11 years ago
#13185 closed bug (invalid)
Error in methods .height() and .width()
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.8.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hi! Browsers Google Chrome 23 and Firefox 18. Body of html-document consists of one block, he has next css property:
div#content {
width: 240px; height: 240px; margin: 3%; padding: 0px;
}
I update width and height of this div, when window is resizing. I do it (I cut unnecessary code):
$(window).bind('load resize',function() {
console.log($(this).width()); console.log($(this).height());
});
$(this).height() return incorrect value, when height of my screen is very small (0-200px) and when this construction is inside .bind() (!). But when method .height() is used outside .bind(), he returns correct value.
In jQuery 1.7.2 this method always returns correct value.
PS Please, also verify method .width(). But I don't have problem with this method.
Change History (4)
comment:1 Changed 11 years ago by
Owner: | set to rezon73@… |
---|---|
Status: | new → pending |
comment:2 Changed 11 years ago by
Status: | pending → new |
---|
Hello. That's my code: http://jsfiddle.net/rezon73/maMFw/
comment:3 Changed 11 years ago by
Status: | new → pending |
---|
Sorry but I do not understand what bug the example is trying to demonstrate. Can you change it to say what you expected and how the result is incorrect?
comment:4 Changed 11 years ago by
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 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.