We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have loaded the BVSelect JS and CSS files into my Javascript ES6 file and created a #selectbox element.
When I try to use new BVSelect() it fails with:
new BVSelect()
Uncaught ReferenceError: BVSelect is not defined
The browser shows that the .js and .css files are loaded succesfully and my code intellisense does pick up the BVSelect class.
Here's my javascript:
$(` <select id="selectbox"> <option data-separator="true"> Select Option </option> <option value="1"> Option 1 </option> <option value="2"> Option 2 </option> <option value="3" disabled> Option 3 </option> <option value="4"> Option 4 </option> </select>`).appendTo(this.$contentDiv); var demo = new BVSelect('#selectbox');
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have loaded the BVSelect JS and CSS files into my Javascript ES6 file and created a #selectbox element.
When I try to use
new BVSelect()
it fails with:The browser shows that the .js and .css files are loaded succesfully and my code intellisense does pick up the BVSelect class.
Here's my javascript:
The text was updated successfully, but these errors were encountered: