In this fiddle, I'm using X-editable. In the corresponding fiddle, I'm not able to make the below code working:
$('#practice').on('change', function() {
alert(this.value);
});
- I'm already using anonymous function
- I'm not using invalid expressions
- I'm using
this
- I'm using
select
- Console is not throwing any error as such.
Where am I going wrong?