Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jquery accordion change event doesn't fire

This doesn't work:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <link rel="stylesheet" type="text/css" href="css/smoothness/jquery-ui-1.10.1.custom.css" />
    <script type="text/javascript" src="js/jquery-1.9.1.js"></script>
    <script type="text/javascript" src="js/jquery-ui-1.10.1.custom.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {

            $("#accordion").accordion({
                change: function (event, ui) { alert('test'); }
            });

        });
    </script>

</head>
<body>


    <div id="accordion">
        <h2><a href="#">Header1</a></h2>
        <div>
            <p>content 1</p>
        </div>
        <h2><a href="#">Header2</a></h2>
        <div>
            <p>content 2</p>
        </div>
    </div>


</body>
</html>
like image 970
Sean Avatar asked Nov 23 '25 06:11

Sean


1 Answers

The accordion widget does not expose a change event in recent versions of jQuery UI.

You can bind to the activate event instead:

$("#accordion").accordion({
    activate: function(event, ui) {
        alert(ui.newHeader.text());  // For instance.
    }
});
like image 81
Frédéric Hamidi Avatar answered Nov 25 '25 20:11

Frédéric Hamidi



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!