Hi,
here the below line user enter any number and enter, I want to pass that value to the javascript to catch the value.
I tried
onchange="SendRemind(name);"
But it passes the text "name" to the script.
<input type="text" name="name" data-conv-question="Please type the request number you want to reminder to the selected user " onchange="SendRemind();">
function SendRemind(name)
{
alert(name);
}