skip to Main Content

Integrate Bootstrap on .liquid ( shopify )

In shopify theme, I want to integrate following bootstrap link on theme.liquid file. <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css"> <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" ></script>…

VIEW QUESTION

bootstrap selectjs is not working for dynamically appended value-Twitter bootstrap

Why bootstrap selectjs is not working for dynamically appended value. whenever i append new option from javascript it is not reflected to the live search. below is code snippet setTimeout(function(){ $('#demo').append('<option>India</option>'); console.log('appended'); },1000); <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.2/css/bootstrap.css" rel="stylesheet"/> <link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.6.3/css/bootstrap-select.css" rel="stylesheet"/> <script…

VIEW QUESTION
Back To Top
Search