How to select/deselect multiple options in dropdown using jQuery

To select and deselect multiple options in a drop-down menu, we will use the HTML and CSS codes. HTML code helps to define the basic structure of the webpage and CSS will benefit in designing the web page. Some essential properties used in the code are as follows- <div> – This is a division tag that… Continue reading How to select/deselect multiple options in dropdown using jQuery

Remove always active/Focused select drop down

Some time the select dropdown field will always active, thus we need a mouse click for updates based on the select box. To remove this always active/focused state add the below code in the corresponding template file <script>    $(‘select’).on (‘change’, function () {        $(this).trigger(‘blur’);    });    </script>

Drop down menus on new SCA site

Requirement is to smoothen the dropdown menus in the SCA.On the new SCA site, can the drop down menus be a bit more smoother.The dropdown menus in the website need to be smoother Solution: the dropdown menus can be smoother by providing the css propery transition-duration. For example: css code: