A
A
Archips2015-11-02 19:28:21
JavaScript
Archips, 2015-11-02 19:28:21

How to set up tabs so that when you open the site they are opened without clicking?

eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee

Answer the question

In order to leave comments, you need to log in

3 answer(s)
S
Sergey Goryachev, 2015-11-02
@webirus

And you won't be strong as long as you give pictures instead of code.

L
LittleFatNinja, 2015-11-02
@LittleFatNinja

why nikon d7000?

S
sergey, 2015-11-02
@zorro76

Without the code, of course, it is difficult to suggest something, but there is such a solution:

$(document).ready(function () {

  $('.........').click(function () {
    $('.........').slideUp('slow');

    if ($(this).next().is(':hidden') == true) {
      $(this).next().slideDown('slow');
    }
  });
  $('.........').hide(); // Hide Content
  $('.........').show(); // Show the "Home" content by Default

});
вместо точек свои классы

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question