I have a JQuery function in which I am trying get the value of select
field from my HTML.
$('.selectCurrency').change(function(){
//alert(this.value);
alert("{{$users["+this.value+"]->currency}}");
});
Its throwing error in this.value
.
Any suggestions how I can get the value?