MyBB Community Forums

Full Version: [Tutorial] Tabbed forum with jQuery (multi categories in one tab)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Please Upload Video Tutorial With Step By Step
Thanks bro working great Smile
its working for first time i dont know what i edited .i checked many times the tutorial i done correctly.But in the main tab it show to crategories.can anyone solve i tplzzz
I dont want that sliding effect

what I have to change in code .

<script type="text/javascript" src="jscripts/jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$.noConflict();
</script>
<script type="text/javascript">
jQuery(document).ready(function($){
$('.tab').click(function(){
$('.at').removeClass('at');
$(this).addClass('at');
$('.content').slideUp();
var catshow = $(this).attr('rel');
$('#'+ catshow).slideDown();
});
});
</script>

I think you gona change this plz I m still confused . Sad

I done this

$('.content').slideUp();
var catshow = $(this).attr('rel');
$('#'+ catshow).slideDown();

to

$('.content');
var catshow = $(this).attr('rel');
$('#'+ catshow);

but now it stop working Toungue

Please help me . Thank you
Sorry members I found my mistake & now it is working great Smile

But now new problem .

When I open my site it shows whole forum & when I click on any tab it get normal .

Tell me how to stop showing whole forum in starting ???
Atlast all errors are removed now Smile

http://hackforum.zymichost.com/
Can any 1 tell me how to change color of selected tab ????
Sorry for that Q I solved that too Smile
+1 rep too u bro Smile
can you give me video tutorial please
Thnkas For that ... really appreciate it
Just played with some CSS3 and got some great looking buttons for my forum Big Grin

Demo -
http://www.recipepper.com/

BTW I noticed that when I refresh the page, it takes me back to the 1st tab. Would be great if someone finds a way out of it Smile

Thanks for the tutorial!
I've done it! thank you very much, great article!
DEMO: http://www.mybb.vn/
Ok, So I've installed everything and got it running, But I must be missing something, How do you select WHICH forums go into which categories ? I have all the categories, but how am I suppose to put the forums into the categories ?
This is a great tut i finally get it
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17