Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script src="http://krystalized.gportal.hu/portal/krystalized/upload/754724_1435743522_09899.js"></script>
- <script>
- $(function() {
- $('.tabs nav a').on('click', function() {
- show_content($(this).index());
- });
- show_content(0);
- function show_content(index) {
- // Make the content visible
- $('.tabs .content.visible').removeClass('visible');
- $('.tabs .content:nth-of-type(' + (index + 1) + ')').addClass('visible');
- // Set the tab to selected
- $('.tabs nav a.selected').removeClass('selected');
- $('.tabs nav a:nth-of-type(' + (index + 1) + ')').addClass('selected');
- }
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement