Build: Fix pre release matching in compare size regex
[jquery.git] / test / integration / gh-2343-ie-radio-click.html
blob4bc6956c3e7db0675e21753a9532fd51ac24f8f9
1 <!DOCTYPE html>
2 <html>
3 <head lang="en">
4 <meta charset="UTF-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <title>Test for gh-2343 (IE11)</title>
7 <script src="../../dist/jquery.js"></script>
8 <script>
9 $(document).ready(function() {
10 $( "fieldset" ).on( "click", "input", function() {
11 $( ".result" ).append( "click " + this.value + "<br />" );
12 } );
13 } );
14 </script>
15 </head>
17 <body>
19 <h1>Test for gh-2343 (IE11)</h1>
20 <p>
21 Instructions: In <b>IE11</b>, click on or focus the first radio button.
22 Then use the left/right arrow keys to select the other radios.
23 You should see events logged in the results below.
24 </p>
25 <fieldset>
26 <input type="radio" name="rad" value="0" /> 0
27 <input type="radio" name="rad" value="1" /> 1
28 <input type="radio" name="rad" value="2" /> 2
29 </fieldset>
30 <div class="result"></div>
32 </body>
33 </html>