Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7526897
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T03:57:45+00:00 2026-05-30T03:57:45+00:00

In android phonegap application, I created 5 or more question with respective option (checkboxes)

  • 0

In android phonegap application, I created 5 or more question with respective option (checkboxes) in div dynamically. Each question and respective option have same id. Now I want to know how many question are answered/how many questions are not answered while clicking submit button.

please guide me. Thanks in advance.

My code is:

for dynamic div: retrive value from local database
function list(results){
for (i = 0; i < results.rows.length; i++) {
                                         $("#poll").append("<li id='"+i+"'>"+results.rows.item(i).ques+"</li>"+"<br/>" );
                                      var optiontypearray  = new Array();
                                      var  arr = results.rows.item(i).option;
                                      var optiontypearray=arr.split(" ");

                                      for(var j=0; j<optiontypearray.length; j++) {
                                       $("#poll").append("<input  id='"+i+"'  name='ckbox' value='"+optiontypearray[j]+"'  type='checkbox'/>"+optiontypearray[j]+"<br/>");
                                      }

                          }
}
for submit  button:get question with respective answer
function submit(){
$answers = $(':checked');
  var $questions=$('li');
 $answers.each(function(index,el) {
 var list1=$(this).attr("id");
 alert("list1:"+list1);
 var val=$('#'+list1).val();
   alert($questions.eq(list1).html() + ' : ' + $(el).val());
});
}

HTML:

<div id="poll">
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T03:57:47+00:00Added an answer on May 30, 2026 at 3:57 am

    This is what happens when you click submit button.

    $('#submit').click(function () {
        var questionsAnswered = questionsNotAnswered = 0
        var arrQuestions = new Array();
        $('li').removeAttr('style').each (function (i) {
            if ($(this).children('input:checked').length > 0) {
                var ans = '';
                $(this).children('input:checked').each(function () {
                   ans+= $(this).val() + ', ';
                });
                arrQuestions[questionsAnswered] = new Array($(this).attr('id'), ans);
                questionsAnswered++;
            } else if ($(this).attr('class') == 'required' && $(this).children('input:checked').length == 0) {
                $(this).css({border : '1px solid red'});
                questionsNotAnswered++;     
                alert($(this).clone().children('span').remove().end().text());
            }
        });    
        $('div#finalResults').html("Questions Answered : " + questionsAnswered + "<br /> Questions Not Answered : " + questionsNotAnswered);
        });
        $.each (arrQuestions, function () {
            $('div#finalResults').append("<br /> Q: " + this[0] + " A: " + this[1]);
        });
    

    Demo. http://jsfiddle.net/tmM76/9/
    Please note that the code in list() function might change as per your existing code which you did not share ;-).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am developing application using phonegap in eclipse for android .I have created folder
I have created a simple application in android [PhoneGap] [Eclipse] {Sorry for this convention
I created dynamic list using android phonegap application.Now I want to add scrollbar for
I am making the phonegap android application in html,javascript and jquery.I have made the
I have PhoneGap-Android application and I want to check network connection type (No connection,
i have used eclipse, android sdk and phonegap to create a small application. I
I created a dynamic list with hyperlinks using Android PhoneGap . Now I want
I have used Android phonegap application for creating dynamic list with label and corresponding
I'm building an Android application that's based around an enhanced WebView (based on PhoneGap).
I followed their how-to: Phonegap Start Phonegap wiki I have succesfully installed the android

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.