var x = document.getElementById('ff_8_dropdown'); //Get the form element const optionsList = []; //Array that will store options data /** * Iterates on each option, gets the value and data-calc_value generated by fluentforms. * The reason for this is when choices.js is used on the select element, the data-calc_value * is removed and only the value is retained. * */ for( let i=0; i < x.length; i++ ) { var tempObj = { value: x.options[i].getAttribute('value'), calcValue: x.options[i].getAttribute('data-calc_value'), } optionsList.push(tempObj); } /** * Gets the choices.js script using CDN. * * Then Converts the select element using choices.js plugin. Customized it so that we can use the * data-calc_value option of fluent forms. */ $.getScript("https://cdn.jsdelivr.net/npm/choices.js/public/assets/scripts/choices.min.js", function(){ const choices = new Choices(x, { callbackOnCreateTemplates: function(template) { return { choice: ({ classNames }, data) => { const val = data.value; const calcValue = getCalcValue(val); const color = getColor( parseInt( calcValue ) ); /** * This returns the default template used by choices.js. * Only the {$color} attribute is added for the custom color of the option. * The rest are default. */ return template(`