Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function(){
- $('.forabg').each(function(){
- var id = $(this).attr('id');
- var title = $(this).find('.header h2').text();
- $(this).parents('#main-content').find('.boardtabs').append('<a class="boardtab" boton="'+id+'">'+title+'</a>');
- });
- $('.boardtab[boton="c1"]').addClass('boardtabactive');
- $('.boardtab').click(function(){
- var id = $(this).attr('boton');
- $('.forabg').not('#'+id).slideUp(500);
- $('.forabg#'+id).slideDown(500);
- $(this).addClass('boardtabactive');
- $(this).siblings().removeClass('boardtabactive');
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement