Hi, I am using Ajax to get the SELECT tag. I mean, if I click the button, it will generate a SELECT tag inside the HTML, I have different outputs for different choices.
I need an onclick event for this SELECT tag, I tried using jQuery
$('#id').click(function() {
alert('test');
});
Does not work. Can someone help please
source
share