#9975 closed bug (invalid)
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>
Change History (4)
comment:3 Changed 11 years ago by
Owner: | set to 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.
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!
I tried using latest version of jquery <script src="http://code.jquery.com/jquery-latest.js"></script> as of Aug 04, 2011.