Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to detect jQuery selector inside the function?

I’m initilizing select2.js library on two select element as follow:

$("#zones-list, #zones-list-popup").select2({
    placeholder: "Select Your City",
    dropdownParent: $(".modal-content"),   // this line should only be for #zones-list-popup"
    ajax: {
       url: ...

As I’ve commented in the code above, I need to have this parameter dropdownParent: $(".modal-content") only for #zones-list-popup selector. Any idea how can I do a conditional thing inside a jquery function that has multiple selector?

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

You can’t, per se. Call select2 twice instead.

const options = {/*etc*/};
$("#zones-list").select2(options);
$("#zones-list-popup").select2({...options, dropdownParent: $(".modal-content")});
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading