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

  • Home
  • SEARCH
  • 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 8824353
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T06:35:27+00:00 2026-06-14T06:35:27+00:00

So I’ve got a confusing issue here. I am creating a table with HTML

  • 0

So I’ve got a confusing issue here. I am creating a table with HTML and JQuery Mobile. It’s elements keep overlapping however and the content does not have the UI CSS applied to it. Am I missing something obvious or is there something to the JQuery Mobile Library I am unfamiliar with?

<table><tr><td><input type="radio"/></td><td>Less than $25,000</td></tr>
    <tr><td><input type="radio"></td><td>$25,000 - $49,999</td></tr>
    <tr><td><input type="radio"></td><td>$50,000 - $74,999</td></tr>
    <tr><td><input type="radio"></td><td>$75,000 - $100,000</td></tr>
    <tr><td><input type="radio"></td><td>More than $100,000</td></tr>
    <tr><td><input type="radio"></td><td>I am not required to share this information</td></tr>
</table></form>

Here is the code and image of what's going on.

  • 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-06-14T06:35:28+00:00Added an answer on June 14, 2026 at 6:35 am

    First you issue:

    Radio options need to have this markup for jQM to display correctly

    • http://jquerymobile.com/demos/1.2.0/docs/forms/radiobuttons/

    HTML

    <fieldset data-role="controlgroup" data-mini="true">
            <input type="radio" name="radio-mini" id="radio-mini-1" value="choice-1" checked="checked" />
            <label for="radio-mini-1">Credit</label>
    
        <input type="radio" name="radio-mini" id="radio-mini-2" value="choice-2"  />
            <label for="radio-mini-2">Debit</label>
    
            <input type="radio" name="radio-mini" id="radio-mini-3" value="choice-3"  />
            <label for="radio-mini-3">Cash</label>
    </fieldset>
    

    Now ( I think ) you’re using the table tag to layout or display elements on the screen. I would suggest not doing this as it’s used for tablature data. I think this is what you’re looking for:

    • http://jsfiddle.net/Lctam/1/

    HTML

    <div data-role="page" class="type-home">
    
       <div data-role="content">
          <fieldset data-role="controlgroup">
        <legend>Annual Salary:</legend>
             <input type="radio" name="radio-choice" id="radio-choice-1" value="choice-1" checked="checked" />
             <label for="radio-choice-1">Less tahn $24,999</label>
    
             <input type="radio" name="radio-choice" id="radio-choice-2" value="choice-2"  />
             <label for="radio-choice-2">$25,000 - $49,999</label>
    
             <input type="radio" name="radio-choice" id="radio-choice-3" value="choice-3"  />
             <label for="radio-choice-3">$50,000 - $74,999</label>
    
             <input type="radio" name="radio-choice" id="radio-choice-4" value="choice-4"  />
             <label for="radio-choice-4">$75,000 - $99,999</label>
    
              <input type="radio" name="radio-choice" id="radio-choice-5" value="choice-5"  />
             <label for="radio-choice-5">More than $100,000</label>
    
              <input type="radio" name="radio-choice" id="radio-choice-6" value="choice-6"  />
             <label for="radio-choice-6">I am not required to share this information
    </label>
    </fieldset>
       </div>
    </div>​
    

    And well Tables are not very well documented ( yet ) in jQM but you can find there is some additional attributes needed for displaying.

    • http://jquerymobile.com/demos/1.2.0/docs/content/content-html.html

    ( View in Chrome )

    • view-source:http://jquerymobile.com/demos/1.2.0/docs/content/content-html.html

    HTML:

    <table summary="This table lists all the JetBlue flights.">
        <caption>Travel Itinerary</caption>
        <thead>
            <tr>
                <th scope="col">Flight:</th>
                <th scope="col">From:</th>
                <th scope="col">To:</th>
            </tr>
        </thead>
        <tfoot>
            <tr>
                <td colspan="5">Total: 3 flights</td>
            </tr>
        </tfoot>
        <tbody>
            <tr>
                <th scope="row">JetBlue 983</th>
                <td>Boston (BOS)</td>
                <td>New York (JFK)</td>
            </tr>
            <tr>
                <th scope="row">JetBlue 354</th>
                <td>San Francisco (SFO)</td>
                <td>Los Angeles (LAX)</td>
            </tr>
            <tr>
                <th scope="row">JetBlue 465</th>
                <td>New York (JFK)</td>
                <td>Portland (PDX)</td>
            </tr>
        </tbody>
    </table>
    

    With that being said there are some efforts for table being worked on

    • http://jquerymobile.com/branches/tables/docs/tables/index.html
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
i got an object with contents of html markup in it, for example: string
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
I've got a string that has curly quotes in it. I'd like to replace
I have this code to decode numeric html entities to the UTF8 equivalent character.
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have thousands of HTML files to process using Groovy/Java and I need to
I'm working with an upstream system that sometimes sends me text destined for HTML/XML

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.