We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, can you help me understand why the code below would show an empty value rather than the value typed into the q9 field.
Thanks,
Pete
$.extend( $.idealforms.flags, {
updateEmailValueForAjax: function( input, event ){ myEmailValue = {"email":""}; myEmailValue["email"] = $("[name='q9']").val()
console.log('myemailval is :' ); console.log(myEmailValue) ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, can you help me understand why the code below would show an empty value rather than the value typed into the q9 field.
Thanks,
Pete
updateEmailValueForAjax: function( input, event ){
myEmailValue = {"email":""};
myEmailValue["email"] = $("[name='q9']").val()
console.log('myemailval is :' );
console.log(myEmailValue)
...
The text was updated successfully, but these errors were encountered: