jqueryjsontwitter-bootstraptwitter-bootstrap-3bootstrap-tabs

How to load JSON to Bootstrap tab properly


I am trying to load JSON data into Bootstrap 3 Tab dynamically like following code. I am able to load the nav-tabs but not any success on loading the contents. How can I fix it?

   var data = {
        "action":
            [
                { "id": "1001", "name": "Matrix" },
                { "id": "1002", "name": "IP Man" },
                { "id": "1003", "name": "Revenge" }
            ],
        "comedy":
            [
                { "id": "2001", "type": "Iceman" },
                { "id": "2002", "type": "Pat & Mat" },
                { "id": "2003", "type": "Sugar" }
                 ],
        "animation":
            [
                { "id": "3001", "type": "Frozen" },
                { "id": "3002", "type": "Tangled" },
                { "id": "3003", "type": "Croods" }
                 ]
    
    };
    
    for (var i in data) {
      $('.nav-tabs').append('<li role="presentation" class=""><a href="#' + i + '" aria-controls="' + i + '" role="tab" data-toggle="tab">' + i + '</a></li>');
    
    }
      for (var j = 0; j < data[i].length; j++) {
        var obj = data[i][j];
        $('.tab-content').append('<div role="tabpanel" class="tab-pane" id="' + obj.name + '">' + obj.name + '</div>');
     }


$('.nav-tabs li').eq(0).addClass('active');
body{padding:30px;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

<div class="container">
  <ul class="nav nav-tabs" role="tablist"></ul>
  <div class="tab-content"></div>
</div>


Solution

  • You have a couple of logic and typo errors in your code. Below working version.

    Typo: in "action" you tape parameter name but in other two parameter name is a type.

    Logic: 1. Using .append cause closing HTML element, so you need to build a full string and then append. 2. You have to close parent for-loop after the second loop, otherwise, you always have only one tab.

    var data = {
            "action":
                [
                    { "id": "1001", "type": "Matrix" },
                    { "id": "1002", "type": "IP Man" },
                    { "id": "1003", "type": "Revenge" }
                ],
            "comedy":
                [
                    { "id": "2001", "type": "Iceman" },
                    { "id": "2002", "type": "Pat & Mat" },
                    { "id": "2003", "type": "Sugar" }
                     ],
            "animation":
                [
                    { "id": "3001", "type": "Frozen" },
                    { "id": "3002", "type": "Tangled" },
                    { "id": "3003", "type": "Croods" }
                     ]
        
        };
        
        for (var i in data) {
          $('.nav-tabs').append('<li role="presentation" class=""><a href="#' + i + '" aria-controls="' + i + '" role="tab" data-toggle="tab">' + i + '</a></li>');
        
          var div = '<div role="tabpanel" class="tab-pane" id="' + i + '">';
          
          for (var j = 0; j < data[i].length; j++) {
            var obj = data[i][j];
            div += '<div id="' + obj.id + '">' + obj.type + '</div>';
         }
         $('.tab-content').append(div);
    }
    
    $('.nav-tabs li').eq(0).addClass('active');
    $('.tab-content div').eq(0).addClass('active');
    body{padding:30px;}
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
    
    <div class="container">
      <ul class="nav nav-tabs" role="tablist"></ul>
      <div class="tab-content"></div>
    </div>