bootstrap-responsive-tabs
bootstrap-responsive-tabs copied to clipboard
Probs with Bootstrap 3.3.5 / jquery 3.0
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?