I have an html containing radio buttons combo box, check box and input box. I run this html on uiwebview. I need a way to be able to know which answer the user has chosen.
How can I do that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I found the way to do it if anyone faced the same problem, in fact you need to add to the html your running the following in the tag you define the checkbox:
for example:
which will call the function checkboxClicked() once the checkbox is selected.
You will implement this function in the JavaScript file that you will compile along with your html once you run it on the webview.