Side navigation
#13185 closed bug (invalid)
Opened January 09, 2013 10:22PM UTC
Closed February 10, 2013 08:58AM UTC
Error in methods .height() and .width()
Reported by: | rezon73@gmail.com | Owned by: | rezon73@gmail.com |
---|---|---|---|
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.
Attachments (0)
Change History (4)
Changed January 10, 2013 04:34AM UTC by comment:1
owner: | → rezon73@gmail.com |
---|---|
status: | new → pending |
Changed January 13, 2013 10:18PM UTC by comment:2
status: | pending → new |
---|
Hello. That's my code:
Changed January 26, 2013 09:13PM UTC by comment:3
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?
Changed February 10, 2013 08:58AM UTC by comment:4
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.