JMRKER's Profile User Rating: -----

Reputation: 115 Stalwart
Group:
Active Members
Active Posts:
748 (0.45 per day)
Joined:
25-October 08
Profile Views:
7,837
Last Active:
User is offline Yesterday, 02:45 PM
Currently:
Offline

Previous Fields

Country:
US
OS Preference:
Who Cares
Favorite Browser:
FireFox
Favorite Processor:
Who Cares
Favorite Gaming Platform:
Who Cares
Your Car:
Who Cares
Dream Kudos:
0

Latest Visitors

Icon   JMRKER has not set their status

Posts I've Made

  1. In Topic: Awesome regex tutorial

    Posted 18 May 2013

    Still has response of "bad request"
  2. In Topic: Centering problem

    Posted 15 May 2013

    Have you tried putting the object within <div> tags like...?
    <div style="margin-left:auto;margin-right:auto">
     <img ..... id="imgObj" ..... >
    </div>
    
    
  3. In Topic: how can I use tabindex to get location of a checked box in a group?

    Posted 20 Apr 2013

    You're most welcome.
    Happy to help.
    Good luck.
    :)
  4. In Topic: how can I use tabindex to get location of a checked box in a group?

    Posted 18 Apr 2013

    It's best to not use tables whenever possible as they are much slower to render.
    The following code could be compressed a bit, but you have not given much information other than for a template
    of how your request might be accomplished.

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8" />
    <title> Untitled </title>
    
    <script type="text/javascript">
    
    </script>
    
    <style type="text/css">
     li { list-style-type:none; float:left; }
     .cInfo { display:none; }
     .cBox { float:left; margin:4px 8px 0px 0px; }
    </style>
    
    </head>
    <body>
    <div id="courseInfo">
     <ul>
      <li>
       <input class="cBox" type="checkbox" id="courseID1" value="Course 1" onclick="toggle(this.checked,'cInfo1')">
       <div style="width:150px; float:left;">
        Course 1 Description <br> Introduction to HTML
       </div>
      <li>
       <span class="cInfo" id="cInfo1">
        <select>
         <option value="Day of Class">Days</option>
         <option value="1">Monday</option>
         <option value="2">Tuesday</option>
         <option value="3">Wednesday</option>
         <option value="4">Thursday</option>
         <option value="5">Friday</option>
         <option value="6">Saturdayday</option>
         <option value="0">Sunday</option>
        </select>
        <select>
         <option value="Instructor">Instructors</option>
         <option value="1">Mr. Able</option>
         <option value="2">Dr. Best</option>
         <option value="3">Mrs. Chosen</option>
        </select>
       </span>
      </li><br style="clear:both">
    
      <li>
       <input class="cBox" type="checkbox" id="courseID2" value="Course 2" onclick="toggle(this.checked,'cInfo2')">
       <div style="width:150px; float:left;">
        Course 2 Description <br> Introduction to CSS
       </div>
      <li>
       <span class="cInfo" id="cInfo2">
        <select>
         <option value="Day of Class">Days</option>
         <option value="1">Monday</option>
         <option value="2">Tuesday</option>
         <option value="3">Wednesday</option>
         <option value="4">Thursday</option>
         <option value="5">Friday</option>
         <option value="6">Saturdayday</option>
         <option value="0">Sunday</option>
        </select>
        <select>
         <option value="Instructor">Instructors</option>
         <option value="1">Mr. Able</option>
         <option value="2">Dr. Best</option>
         <option value="3">Mrs. Chosen</option>
        </select>
       </span>
      </li><br style="clear:both">
    
      <li>
       <input class="cBox" type="checkbox" id="courseID3" value="Course 3" onclick="toggle(this.checked,'cInfo3')">
       <div style="width:150px; float:left;">
        Course 3 Description <br>Introduction to Javascript
       </div>
      <li>
       <span class="cInfo" id="cInfo3">
        <select>
         <option value="Day of Class">Days</option>
         <option value="1">Monday</option>
         <option value="2">Tuesday</option>
         <option value="3">Wednesday</option>
         <option value="4">Thursday</option>
         <option value="5">Friday</option>
         <option value="6">Saturdayday</option>
         <option value="0">Sunday</option>
        </select>
        <select>
         <option value="Instructor">Instructors</option>
         <option value="1">Mr. Able</option>
         <option value="2">Dr. Best</option>
         <option value="3">Mrs. Chosen</option>
        </select>
       </span>
      </li><br style="clear:both">
    
     </ul>
    
    </div>
    
    <script type="text/javascript">
    function toggle(ckStatus,IDS) {
      var sel = document.getElementById(IDS);
      if (ckStatus) { sel.style.display = 'block'; }
               else { sel.style.display = 'none'; }
    }
    </script>
    
    </body>
    </html>
    
    
  5. In Topic: how can I use tabindex to get location of a checked box in a group?

    Posted 17 Apr 2013

    Question:

    Why do you need the tabIndex?
    The normal purpose of the checkbox is to determine if the user has or has not selected an option presented. I don't see any need for the position of the checkbox.

    Please clarify what it is that you are trying to do and the need for the tabIndex.
    :online2long:

My Information

Member Title:
D.I.C Addict
Age:
Age Unknown
Birthday:
Birthday Unknown
Gender:
Location:
Florida
Programming Languages:
javascript, perl, java, forth, basic, fortran, assembly (several)

Contact Information

E-mail:
Private
Website URL:
Website URL  http://

Friends

Comments

JMRKER has no profile comments yet. Why not say hello?