HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/komma.pro/vendor/behat/mink/driver-testsuite/web-fixtures/issue255.html
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Issue 255</title>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
    <script src="js/jquery-1.6.2-min.js"></script>
</head>
<body>
    <form>
        <label for="foo_select">Foo</label>
        <select name="foo_select" id="foo_select">
            <option value="1" selected="selected">Option 1</option>
            <option value="2">Option 2</option>
            <option value="3">Option 3</option>
        </select>
        <input type="checkbox" id="foo_check" />
        <input type="submit" />
        <p id="output_foo_select"></p>
        <p id="output_foo_check"></p>
    </form>

    <script type="text/javascript">
        (function() {
            $('#foo_select').change(function () {
                $('#output_foo_select').text("onChangeSelect");
            });
            $('#foo_check').change(function () {
                $('#output_foo_check').text("onChangeCheck");
            });
        })();
    </script>
</body>
</html>