{"id":754,"date":"2016-05-13T18:48:08","date_gmt":"2016-05-13T18:48:08","guid":{"rendered":"http:\/\/box.jharaphula.com\/?p=754"},"modified":"2024-01-25T04:21:08","modified_gmt":"2024-01-25T09:51:08","slug":"example-angularjs-dynamic-tabs-bootstrap","status":"publish","type":"post","link":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/","title":{"rendered":"Example of responsive AngularJS Dynamic Tabs using BootStrap 5"},"content":{"rendered":"<p>During web application development many times we required to implement dynamic tab for better user experience. In this example I am sharing the codes to create AngularJS Dynamic Tabs using <a href=\"https:\/\/jharaphula.com\/learn-bootstrap-tutorial-beginners\/\" target=\"_blank\" rel=\"noopener noreferrer\">BootStrap<\/a>. Here to show you a demo I created 4 states of India as the tabs. Under each tab I am showing the cities for that for that particular state dynamically.<\/p>\n<h2>AngularJS directive<\/h2>\n<p>The <a href=\"https:\/\/jharaphula.com\/restrict-option-custom-directive\/\" target=\"_blank\" rel=\"noopener noreferrer\">AngularJS directive<\/a> here I create for my tab control is ngTab. Which <strong>accepts two parameters length &amp; data<\/strong>. Length is the number of tabs we required. When data is the states &amp; it&#8217;s cities. Data is in JSON format. You can replace this data as per your requirements. <strong>To get these parameters values in AngularJS ngTab directive I am using scope: { &#8220;length&#8221;: &#8216;=&#8217;, &#8220;data&#8221;: &#8216;@&#8217; }<\/strong>. You can watch this in the below app.js file. To create responsive Tabs I used BootStrap here. my-tab.html is my template for ngTab. In template file I am binding the state &amp; cities values (In form of array) from the scope object of TabModule.<\/p>\n<p>To run this demo application you need to create 3 files as index.html, app.js &amp; my-tab.html. Copy the below codes to the respective files. With internet connection run the index.html. It will show you the result like the below screen.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-3080\" src=\"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab.png\" alt=\"tab\" width=\"943\" height=\"278\" srcset=\"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab.png 943w, https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab-300x88.png 300w\" sizes=\"auto, (max-width: 943px) 100vw, 943px\" \/><\/p>\n<h3>AngularJS Dynamic Tabs using BootStrap<\/h3>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">&lt;!DOCTYPE html&gt;\r\n&lt;html ng-app=&quot;tabModule&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;utf-8&quot;&gt;\r\n&lt;title&gt;Example to Create responsive AngularJS Dynamic Tabs&lt;\/title&gt;\r\n&lt;!--AngularJS library CDN link--&gt;\r\n&lt;script type=&quot;text\/javascript&quot; src=&quot;https:\/\/ajax.googleapis.com\/ajax\/libs\/angularjs\/1.3.0-rc.0\/angular.min.js&quot;&gt;&lt;\/script&gt;\r\n&lt;script type=&quot;text\/javascript&quot; src=&quot;app.js&quot;&gt;&lt;\/script&gt;\r\n&lt;!--Jquery library CDN link--&gt;\r\n&lt;script src=&quot;http:\/\/code.jquery.com\/jquery-1.11.0.min.js&quot;&gt;&lt;\/script&gt;\r\n&lt;!--Jquery UI CDN link--&gt;\r\n&lt;script src=&quot;http:\/\/code.jquery.com\/ui\/1.11.1\/jquery-ui.js&quot;&gt;&lt;\/script&gt;\r\n&lt;!--BootStrap CDN links--&gt;\r\n&lt;script type=&quot;text\/javascript&quot; src=&quot;http:\/\/netdna.bootstrapcdn.com\/twitter-bootstrap\/2.1.1\/js\/bootstrap.js&quot;&gt;&lt;\/script&gt;\r\n&lt;link href=&quot;http:\/\/netdna.bootstrapcdn.com\/twitter-bootstrap\/2.1.1\/css\/bootstrap.no-icons.min.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link href=&quot;http:\/\/netdna.bootstrapcdn.com\/font-awesome\/2.0\/css\/font-awesome.css&quot; rel=&quot;stylesheet&quot;&gt;\r\n&lt;link rel=&quot;stylesheet&quot; href=&quot;http:\/\/netdna.bootstrapcdn.com\/twitter-bootstrap\/2.1.1\/css\/bootstrap.min.css&quot; type=&quot;text\/css&quot;&gt;\r\n&lt;link rel=&quot;stylesheet&quot; href=&quot;http:\/\/netdna.bootstrapcdn.com\/twitter-bootstrap\/2.1.1\/css\/bootstrap-theme.min.css&quot; type=&quot;text\/css&quot;&gt;\r\n&lt;link rel=&quot;stylesheet&quot; href=&quot;http:\/\/code.jquery.com\/ui\/1.11.1\/themes\/smoothness\/jquery-ui.css&quot;&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n&lt;ng-tab length=&quot;4&quot; data='{&quot;Country&quot;:[{&quot;state&quot;:&quot;Maharashtra&quot;, &quot;cities&quot;:&quot;Mumbai, Pune, Nagpur, Thane, Nashik&quot;},{&quot;state&quot;:&quot;Odisha&quot;, &quot;cities&quot;:&quot;Bhubaneswar, Cuttack, Rourkela, Brahmapur, Sambalpur&quot;},{&quot;state&quot;:&quot;Karnataka&quot;, &quot;cities&quot;:&quot;Bellary, Bidar, Gulbarga, Koppal, Raichur&quot;},{&quot;state&quot;:&quot;Chandigarh&quot;, &quot;cities&quot;:&quot;Ludhiana, Amritsar, Jalandhar, Patiala, Bathinda&quot;}]}'&gt;&lt;\/ng-tab&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>my-tab.htm<\/h3>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">&lt;!--ngTab Template--&gt;\r\n&lt;h3&gt;&lt;center&gt;{{ appDetails }}&lt;\/center&gt;&lt;\/h3&gt;\r\n&lt;div class=&quot;container&quot;&gt;\r\n&lt;div id=&quot;content&quot;&gt;\r\n&lt;ul id=&quot;tabs&quot; class=&quot;nav nav-tabs&quot; data-tabs=&quot;tabs&quot;&gt;\r\n&lt;li ng-class=&quot;{active: $first}&quot; ng-repeat=&quot;item in tempArrTab&quot;&gt;\r\n&lt;a href=&quot;#{{ item }}&quot; data-toggle=&quot;tab&quot;&gt;{{ item }}&lt;\/a&gt;\r\n&lt;\/li&gt;\r\n&lt;\/ul&gt;\r\n&lt;div id=&quot;my-tab-content&quot; class=&quot;tab-content&quot;&gt;\r\n&lt;div ng-repeat=&quot;item in tempArrTab&quot; class=&quot;tab-pane&quot; ng-class=&quot;{active: $first}&quot; id=&quot;{{ item }}&quot;&gt;\r\n&lt;h2&gt;{{ item }}&lt;\/h2&gt;\r\n&lt;p&gt;Welcome to {{ item }}. Visit Us.&lt;\/p&gt;\r\nCities : &lt;input list=&quot;tags-{{ $index }}&quot;&gt;\r\n&lt;\/div&gt;\r\n\r\n&lt;div ng-repeat=&quot;compitem in tempCompArr&quot;&gt;\r\n&lt;datalist id=&quot;tags-{{ $index }}&quot;&gt;\r\n&lt;option ng-repeat=&quot;items in compitem.split(',')&quot; value=&quot;{{ items }}&quot;&gt;\r\n&lt;\/datalist&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;<\/pre>\n<h3>app.js<\/h3>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">\/* ng-tab Module *\/\r\nangular.module('tabModule', []).directive('ngTab', function() {\r\nreturn {\r\nrestrict: 'E',\r\ntransclude: true,\r\n\r\nscope: {\r\n\/* Accepting the number of Tab you want in your app *\/\r\n&quot;length&quot;: '=',\r\n\/* Accepting the data in JSON for Tab *\/\r\n&quot;data&quot;: '@'\r\n},\r\n\r\nlink: function (scope, element) {\r\nscope.$watch(&quot;length&quot;, function (arrlen) {\r\nscope.$watch(&quot;data&quot;, function (value) {\r\n\r\nvar obj = JSON.parse(value);\r\n\r\nvar lenjson = obj.Country.length;\r\n\r\nvar arrTab = [];\r\nvar autoCompArray = [];\r\n\r\n\/* Assigning input JSON data to Array *\/\r\nif (arrlen == lenjson) {\r\nfor(i=0; i&lt;lenjson; i++) {\r\narrTab.push(obj.Country[i].state);\r\nautoCompArray.push(obj.Country[i].cities)\r\n}\r\n} else {\r\nalert('Please provide accurate data length.');\r\n}\r\n\r\nscope.tempArrTab = arrTab;\r\nscope.tempCompArr = autoCompArray;\r\nscope.appDetails = 'Create your own ng-tab using AngularJS';\r\n\r\n}, false);\r\n\r\n}, false);\r\n},\r\n\r\ncontroller: function($scope, $filter) {\r\n\r\n$(function() {\r\n$(&quot;#tabs&quot;).tabs();\r\n});\r\n},\r\ntemplateUrl: 'my-tab.htm'\r\n};\r\n});<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>During web application development many times we required to implement dynamic tab for better user experience. In this example I am sharing the codes to&#8230;<\/p>\n","protected":false},"author":2,"featured_media":3079,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[27],"tags":[37178,37180,37179],"class_list":["post-754","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-learn-angularjs-with-examples","tag-angularjs-dynamic-tabs","tag-bootstrap","tag-dynamic-tabs-using-bootstrap"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Example of responsive AngularJS Dynamic Tabs using BootStrap 5<\/title>\n<meta name=\"description\" content=\"During web application development many times we required to implement AngularJS Dynamic Tabs for better user experience. Loo at the example how I did.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Example of responsive AngularJS Dynamic Tabs using BootStrap 5\" \/>\n<meta property=\"og:description\" content=\"During web application development many times we required to implement AngularJS Dynamic Tabs for better user experience. Loo at the example how I did.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/\" \/>\n<meta property=\"og:site_name\" content=\"OneStop Shop\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/tajinweb\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/panda.biswabhusan\" \/>\n<meta property=\"article:published_time\" content=\"2016-05-13T18:48:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-25T09:51:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab-view.png\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"487\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Biswabhusan Panda\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Biswabhusan Panda\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/\"},\"author\":{\"name\":\"Biswabhusan Panda\",\"@id\":\"https:\/\/jharaphula.com\/#\/schema\/person\/6e9804d6e96ca7218bf968283d69c01b\"},\"headline\":\"Example of responsive AngularJS Dynamic Tabs using BootStrap 5\",\"datePublished\":\"2016-05-13T18:48:08+00:00\",\"dateModified\":\"2024-01-25T09:51:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/\"},\"wordCount\":921,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/jharaphula.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab-view.png\",\"keywords\":[\"AngularJS Dynamic Tabs\",\"BootStrap\",\"Dynamic Tabs using BootStrap\"],\"articleSection\":[\"AngularJS with Examples\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/\",\"url\":\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/\",\"name\":\"Example of responsive AngularJS Dynamic Tabs using BootStrap 5\",\"isPartOf\":{\"@id\":\"https:\/\/jharaphula.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab-view.png\",\"datePublished\":\"2016-05-13T18:48:08+00:00\",\"dateModified\":\"2024-01-25T09:51:08+00:00\",\"description\":\"During web application development many times we required to implement AngularJS Dynamic Tabs for better user experience. Loo at the example how I did.\",\"breadcrumb\":{\"@id\":\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#primaryimage\",\"url\":\"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab-view.png\",\"contentUrl\":\"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab-view.png\",\"width\":750,\"height\":487,\"caption\":\"Example to Create responsive AngularJS Dynamic Tabs using BootStrap\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jharaphula.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Example of responsive AngularJS Dynamic Tabs using BootStrap 5\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jharaphula.com\/#website\",\"url\":\"https:\/\/jharaphula.com\/\",\"name\":\"OneStop Shop\",\"description\":\"Blog for SEO Guest Posting, Digital Marketing or Home Remedies\",\"publisher\":{\"@id\":\"https:\/\/jharaphula.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jharaphula.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jharaphula.com\/#organization\",\"name\":\"OneStop Shop\",\"url\":\"https:\/\/jharaphula.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jharaphula.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jharaphula.com\/wp-content\/uploads\/2023\/10\/logo.jpg\",\"contentUrl\":\"https:\/\/jharaphula.com\/wp-content\/uploads\/2023\/10\/logo.jpg\",\"width\":409,\"height\":91,\"caption\":\"OneStop Shop\"},\"image\":{\"@id\":\"https:\/\/jharaphula.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/tajinweb\",\"https:\/\/x.com\/guestpostingopp\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/jharaphula.com\/#\/schema\/person\/6e9804d6e96ca7218bf968283d69c01b\",\"name\":\"Biswabhusan Panda\",\"description\":\"Biswabhusan is the founder &amp; CEO of JHARAPHULA. Over the last 3 years, he &amp; his team has proved the way to turn blogging into a lucrative career choice. A blog scientist by mind and a passionate blogger by heart. His blog, JHARAPHULA is a platform of various interactive information.\",\"sameAs\":[\"https:\/\/jharaphula.com\",\"https:\/\/www.facebook.com\/panda.biswabhusan\"],\"url\":\"https:\/\/jharaphula.com\/author\/biswabhusan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Example of responsive AngularJS Dynamic Tabs using BootStrap 5","description":"During web application development many times we required to implement AngularJS Dynamic Tabs for better user experience. Loo at the example how I did.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/","og_locale":"en_US","og_type":"article","og_title":"Example of responsive AngularJS Dynamic Tabs using BootStrap 5","og_description":"During web application development many times we required to implement AngularJS Dynamic Tabs for better user experience. Loo at the example how I did.","og_url":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/","og_site_name":"OneStop Shop","article_publisher":"https:\/\/www.facebook.com\/tajinweb","article_author":"https:\/\/www.facebook.com\/panda.biswabhusan","article_published_time":"2016-05-13T18:48:08+00:00","article_modified_time":"2024-01-25T09:51:08+00:00","og_image":[{"width":750,"height":487,"url":"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab-view.png","type":"image\/png"}],"author":"Biswabhusan Panda","twitter_misc":{"Written by":"Biswabhusan Panda","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#article","isPartOf":{"@id":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/"},"author":{"name":"Biswabhusan Panda","@id":"https:\/\/jharaphula.com\/#\/schema\/person\/6e9804d6e96ca7218bf968283d69c01b"},"headline":"Example of responsive AngularJS Dynamic Tabs using BootStrap 5","datePublished":"2016-05-13T18:48:08+00:00","dateModified":"2024-01-25T09:51:08+00:00","mainEntityOfPage":{"@id":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/"},"wordCount":921,"commentCount":0,"publisher":{"@id":"https:\/\/jharaphula.com\/#organization"},"image":{"@id":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#primaryimage"},"thumbnailUrl":"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab-view.png","keywords":["AngularJS Dynamic Tabs","BootStrap","Dynamic Tabs using BootStrap"],"articleSection":["AngularJS with Examples"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/","url":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/","name":"Example of responsive AngularJS Dynamic Tabs using BootStrap 5","isPartOf":{"@id":"https:\/\/jharaphula.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#primaryimage"},"image":{"@id":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#primaryimage"},"thumbnailUrl":"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab-view.png","datePublished":"2016-05-13T18:48:08+00:00","dateModified":"2024-01-25T09:51:08+00:00","description":"During web application development many times we required to implement AngularJS Dynamic Tabs for better user experience. Loo at the example how I did.","breadcrumb":{"@id":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#primaryimage","url":"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab-view.png","contentUrl":"https:\/\/jharaphula.com\/wp-content\/uploads\/2016\/05\/tab-view.png","width":750,"height":487,"caption":"Example to Create responsive AngularJS Dynamic Tabs using BootStrap"},{"@type":"BreadcrumbList","@id":"https:\/\/jharaphula.com\/example-angularjs-dynamic-tabs-bootstrap\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jharaphula.com\/"},{"@type":"ListItem","position":2,"name":"Example of responsive AngularJS Dynamic Tabs using BootStrap 5"}]},{"@type":"WebSite","@id":"https:\/\/jharaphula.com\/#website","url":"https:\/\/jharaphula.com\/","name":"OneStop Shop","description":"Blog for SEO Guest Posting, Digital Marketing or Home Remedies","publisher":{"@id":"https:\/\/jharaphula.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jharaphula.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jharaphula.com\/#organization","name":"OneStop Shop","url":"https:\/\/jharaphula.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jharaphula.com\/#\/schema\/logo\/image\/","url":"https:\/\/jharaphula.com\/wp-content\/uploads\/2023\/10\/logo.jpg","contentUrl":"https:\/\/jharaphula.com\/wp-content\/uploads\/2023\/10\/logo.jpg","width":409,"height":91,"caption":"OneStop Shop"},"image":{"@id":"https:\/\/jharaphula.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/tajinweb","https:\/\/x.com\/guestpostingopp"]},{"@type":"Person","@id":"https:\/\/jharaphula.com\/#\/schema\/person\/6e9804d6e96ca7218bf968283d69c01b","name":"Biswabhusan Panda","description":"Biswabhusan is the founder &amp; CEO of JHARAPHULA. Over the last 3 years, he &amp; his team has proved the way to turn blogging into a lucrative career choice. A blog scientist by mind and a passionate blogger by heart. His blog, JHARAPHULA is a platform of various interactive information.","sameAs":["https:\/\/jharaphula.com","https:\/\/www.facebook.com\/panda.biswabhusan"],"url":"https:\/\/jharaphula.com\/author\/biswabhusan\/"}]}},"_links":{"self":[{"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/posts\/754","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/comments?post=754"}],"version-history":[{"count":0,"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/posts\/754\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/media\/3079"}],"wp:attachment":[{"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/media?parent=754"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/categories?post=754"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jharaphula.com\/wp-json\/wp\/v2\/tags?post=754"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}