[Special Summer Sale] 40% OFF All Magento 2 Themes

Cart

Get selected text from a drop-down list (select box) using jQuery

  • This topic is empty.
Viewing 31 post (of 31 total)
  • Author
    Posts
  • #9356
    dhia-alhaq-shalabi
    Participant
    $("#dropdownid").change(function(el) {
        console.log(el.value);
    });
    

    Or you can use this

    $("#dropdownid").change(function() {
        console.log($(this).val());
    });
    
Viewing 31 post (of 31 total)
  • You must be logged in to reply to this topic.