Access our premium support and let us know your problems, we will help you solve them.

0
No products in the cart.
  • 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.