Side navigation
#9975 closed bug (invalid)
Opened August 04, 2011 02:48PM UTC
Closed September 02, 2011 07:59AM UTC
Last modified March 14, 2012 08:58AM UTC
Jquery height is not working on IE9...even though it sets the value to a fixed value, but still it doesn't work
Reported by: | anonymous | Owned by: | anonymous |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.6.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
<script language="javascript" type="text/javascript">
$(document).ready(function() { /*This funciton will set the height of all div.infoColumn with even positions(starting from 0) to the height of the maximum of it's and it's next element */
$('div.infoColumn:even').each(function(index) {
$(this).height(Math.max($(this).height(),$(this).next().height()));
$(this).next().height(Math.max($(this).height(),$(this).next().height()));
});
});
</script>
Attachments (0)
Change History (4)
Changed August 04, 2011 02:54PM UTC by comment:1
_comment0: | I tried using latest version of jquery <script src="http://code.jquery.com/jquery-latest.js"></script> as if Aug 04, 2011. → 1312469692933262 |
---|
Changed August 04, 2011 03:36PM UTC by comment:2
Here is the JSFiddle one: http://jsfiddle.net/x9jJQ/3/
Changed August 18, 2011 03:47PM UTC by comment:3
owner: | → anonymous |
---|---|
status: | new → pending |
Can you reduce this to a simpler test case? There is still a lot of code here and it's not clear what problem you're reporting.
Changed September 02, 2011 07:59AM 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!
I tried using latest version of jquery <script src="http://code.jquery.com/jquery-latest.js"></script> as of Aug 04, 2011.