Bug Tracker

Ticket #1780: jquery_1780.html

File jquery_1780.html, 0.7 kB (added by maxp, 1 year ago)

Test case

Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html>
3    <head>
4        <title>
5            IE Crash test ... dummies?
6        </title>
7        <script src="http://code.jquery.com/jquery-latest.js"></script>
8    </head>
9    <body >
10        <table width="100%" border="0" cellpadding="0" cellspacing="5">
11            <div class="popup" id="pop_10" title="popup" >here it is!!</div>
12            <tr>
13                <td><a href="#" onclick="$('#pop_10').css('visibility', 'hidden'); return false;" />hide</a></td>
14                <td><a href="#" onclick="$('#pop_10').css('visibility', 'visible'); return false;" />show</a></td>
15                <td><a href="#" onclick="alert($('#pop_10').width()); return false;" />get the width</a></td>
16            </tr>
17        </table>
18    </body>
19</html>
20