bootstrap-responsive-tabs icon indicating copy to clipboard operation
bootstrap-responsive-tabs copied to clipboard

Probs with Bootstrap 3.3.5 / jquery 3.0

Open manu37 opened this issue 8 years ago • 2 comments

Doesn't work anymore on Bootstrap 3.3.5/jquery 3.0 since .context has removed. Any ideas?

manu37 avatar Mar 06 '17 11:03 manu37

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, '#' );

lincolnlemos avatar Mar 28 '17 10:03 lincolnlemos

In the meantime I solved it with var current = $( e.target )[0].id.replace( /collapse-/g, '#' ); Any differences?

manu37 avatar Apr 03 '17 19:04 manu37