Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I click on ASUS Products page's Intel socket bla2.., the page doesn't have to reload, after I clicked for example Intel Socket 2011, Intel C602 & Intel X79 showed up, how do I achieve it using jQuery?

share|improve this question
Variations on .show(), and possibly a little Ajax. Look for tutorials. – rynah Mar 17 '12 at 18:15
I want to achieve it by not using AJAX – Mouse Hello Mar 17 '12 at 18:16
@minitech Actually a bit more complicated. Note the hash change and history saving. Cool stuff, normally done with some iframe tricks. I believe that this "state saving" is (or will be) included in HTML5. – freakish Mar 17 '12 at 18:20
@freakish: iframe tricks? No... onhashchange and history.pushState. They're already here :) – rynah Mar 17 '12 at 18:23
@minitech Yeah, this is HTML5. Before that people used iframe tricks (IE6/7). See this page for example: benalman.com/projects/jquery-hashchange-plugin "How does the plugin work?" part. – freakish Mar 17 '12 at 18:28

1 Answer

up vote 1 down vote accepted

Indeed this is very simple.

First you can try it in seconds with jQuery UI Tabs Widget. This is not the same styling but the idea is the same.

Then you have two options :

  • You can try to style the jQuery UI tabs widget : jquery ui just setup the DOM elements with some CSS classes : if you redefine this classes, you can style it your way

  • You can reproduce the behaviour without the widget. Basically, set up the same markup than with the widget, hide your tabs with CSS, and reshow them on click on your links. An quick and dirty example :

    $('ul#links li a').click(function(){
      $($(this).attr('href')).show().siblings().hide();
    });
    

Edit

Maybe an easier way to style it : http://os.alfajango.com/easytabs/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.