Hi,
I use accordion to list items in a database and I want to use a checkbox so that the user can select from the list. Normal accordion behaviour is that a click opens the accordion. Result is that a click on the checkbox does the same and the checkbox is not checked.
Now I managed to remove the onclick behaviour from the elements:
$('#accordion').find('input').click(function () { return false; });
but I cannot get the checkbox to get checked.
Does anyone have a suggestion to solve this?
To the developers: could this be an option in the future?
regards,
Edwin