Hello,
I would like to display a popup when changing the type of issue (unrecorded value).
I got some code:
"AJS. $ ( "# Issuetype-field"). Val ()"
this allows me to have the current value, but how with jquery recouped the value to "onchange"?
thanks
Hi @laumain jerome ,
Maybe you need something like this:
AJS.$("#issuetype-field").on('change', function() {
//do what you want with this.value , e.g.:
alert( this.value );
});
hi aleksandr,
I tested this ... but it doesn't seem to work in my case :(
no matter, I proceed differently
thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.