Well basically I have implement a auto-generated form using the latest version of bootstrap v4.4. The code is in a JS file which will append the form wherever it is called. Along with bootstrap's CSS CDN.
I found myself in a situation that I need to append the form in a website that uses bootstrap 3.2, which I cannot change that and when I append the JS and the CDN it breaks parts of the other website.
my question is: Is there any way to make to bootstrap 4.4 available only for the elements inside the form's container (div)?
<link rel="stylesheet" href="https://cdnbootstrap44.com>
<div class="append-form-here></div>
<script src="formjs.js"></scritp>
the above is the div that the javascript code will append the form inside. I would like to apply bootstrap 4.4 only to the elements inside it.