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>
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.
}
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With