Axel Stone
Axel Stone

Reputation: 1580

JQuery tabs doesn't work - no error

This is what I have included:

  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  <script src="http://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>

  <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
  <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">

  <script src="tabs.js"></script>

This is in my html:

            <div id="#tabs">
                <ul class="nav nav-tabs">
                    <li><a href="#tab1">Informationen</a></li>
                    <li><a href="#tab2">Kontakten</a></li>
                    <li><a href="#tab3">Nachrichten</a></li>
                    <li><a href="#tab4">Messages</a></li>
                </ul>
                <div id="tab1">dsds</div>
                <div id="tab2">dsds</div>
                <div id="tab3">dsds</div>
                <div id="tab4">dsds</div>
            </div>

and this is in tabs.js:

$(document).ready(function() {
    $( "#tabs" ).tabs();
});

After page loading there is no error, all files are found, but jQuery tabs do absolutely nothing and all divs are visible. It is the simplest example of tabs, what is wrong here?

Upvotes: 1

Views: 458

Answers (1)

napster3world
napster3world

Reputation: 366

change <div id="#tabs"> in <div id="tabs">

Upvotes: 3

Related Questions