Open manu37 opened 7 years ago
Hey @manu37. I got same error..
Replace:
var current = $( e.target ).context.id.replace( /collapse-/g, '#' );
For
var current = $( e.target ).attr('id').replace( /collapse-/g, '#' );
In the meantime I solved it with
var current = $( e.target )[0].id.replace( /collapse-/g, '#' );
Any differences?
Doesn't work anymore on Bootstrap 3.3.5/jquery 3.0 since .context has removed. Any ideas?