Jquery/Javascript not working

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jagaurav
    New Member
    • Aug 2016
    • 11

    Jquery/Javascript not working

    I am working on webpage which has following :

    - Collapsible panel as it has lot of fields( have used Accordian style for this purpose)

    - 3 Javascripts to enable/disable set of fields based on Checkbox

    - Jquery to show/hide the tablerows depending upon the dropdown so if they select 0 nothing shows, if they select 1 row 1 shows and selct 2 to display 2 rows and so on..

    The problem I am facing is that scripts and query works separately but not when they are combined together. Please help !!!

    Below is the code :

    Code:
    <!DOCTYPE html>
    <html>
    <head>
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
      <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
      <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <!--This is Javascript to disable the address fields if user doesn't tick the checkbox-->
    <script type="text/javascript">
    $(document).ready(function(){
        $('#sccb').click(function(){
            if (this.checked) {
                $('#cns').removeAttr("disabled");
                $('#cns2').removeAttr("disabled");
                $('#cns3').removeAttr("disabled");
                $('#cns4').removeAttr("disabled");
                $('#cns5').removeAttr("disabled");
                $('#cns6').removeAttr("disabled");
                $('#cns7').removeAttr("disabled");
            } else {
                $("#cns").attr("disabled", true);
                $("#cns2").attr("disabled", true);
                $("#cns3").attr("disabled", true);
                $('#cns4').attr("disabled", true);
                $('#cns5').attr("disabled", true);
                $('#cns6').attr("disabled", true);
                $('#cns7').attr("disabled", true);
            }
        });
    });
    </script>
    <script type="text/javascript">
    $(document).ready(function(){
        $('#sccb1').click(function(){
            if (this.checked) {
                $('#cns8').removeAttr("disabled");
                $('#cns9').removeAttr("disabled");
                $('#cns10').removeAttr("disabled");
                $('#cns11').removeAttr("disabled");
                $('#cns12').removeAttr("disabled");
                $('#cns13').removeAttr("disabled");
                $('#cns14').removeAttr("disabled");
              
            } else {
                $("#cns8").attr("disabled", true);
                $("#cns9").attr("disabled", true);
                $("#cns10").attr("disabled", true);
                $("#cns11").attr("disabled", true);
                $("#cns12").attr("disabled", true);
                $("#cns13").attr("disabled", true);
                $("#cns14").attr("disabled", true);
            }
        });
    });
    </script>
    <script type="text/javascript">
    $(document).ready(function(){
        $('#sccb2').click(function(){
            if (this.checked) {
                $('#cns15').removeAttr("disabled");
                $('#cns16').removeAttr("disabled");
                $('#cns17').removeAttr("disabled");
                $('#cns18').removeAttr("disabled");
                $('#cns19').removeAttr("disabled");
                $('#cns20').removeAttr("disabled");
                $('#cns21').removeAttr("disabled");
              
            } else {
                $("#cns15").attr("disabled", true);
                $("#cns16").attr("disabled", true);
                $("#cns17").attr("disabled", true);
                $("#cns18").attr("disabled", true);
                $("#cns19").attr("disabled", true);
                $("#cns20").attr("disabled", true);
                $("#cns21").attr("disabled", true);
            }
        });
    });
    </script>
    <script>
    $( document ).ready(function() {
        $( "select" ).change(function () {
            var val = $( "select" ).val();
            if (val != 'select one') {
                var tableRows = $("table tr");
                jQuery.each(tableRows, function(i ,tr) {
                    if (i > val) {
                        $(tr).hide();
                    } else {
                        $(tr).show();
                    }
                })
            }
          }
        )
    });
    </script>
      <style>
    .input {
    display: inline;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    padding: 4px;
    border: 2px solid #b7b7b7;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font: normal 14px/normal "Comic Sans MS", cursive, sans-serif;
    color: rgba(0,0,0,1);
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    background: rgba(255,255,255,1);
    -webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,0.5) ;
    box-shadow: 0 0 1px 0 rgba(0,0,0,0.5) ;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.66) ;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 1, 1);
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 1, 1);
    -o-transition: all 200ms cubic-bezier(0.42, 0, 1, 1);
    transition: all 200ms cubic-bezier(0.42, 0, 1, 1);
    }
    tbody tr {
    display: none;
    }
    </style>
    </head>
    <body>
    
    <div class="container">
      <h2>Accordion Example</h2>
      <div class="panel-group" id="accordion">
        <div class="panel panel-default">
          <div class="panel-heading">
            <h4 class="panel-title">
              <a data-toggle="collapse" data-parent="#accordion" href="#collapse1">Collapsible Group 1</a>
            </h4>
          </div>
          <div id="collapse1" class="panel-collapse collapse in">
            <div class="panel-body">
    <fieldset>
    <fieldset style="width: 1031px;"><legend style="font-weight: bold; font-family: Comic Sans MS;">Personal Details</legend><br>
    <div style="width: 1021px;" class="form-group"> <big><label for="stuftitle">Title<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp; &nbsp;&nbsp;
    <select name="stuftitle" class="input">
    <option value="">-select--</option>
    <option>Mr</option>
    <option>Dr</option>
    </select>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;
    <big><label for="stuffname">Firstname<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp;
    <input size="15" name="stuffname" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stufmname">Middlename<span style="color: red;">*</span></label></big>&nbsp;
    <input size="15" class="input" name="stufmname">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stufsname">Surname<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp; <input size="16" class="input" name="stufsname"></div>
    <br>
    <big><label for="stufgender">Gender<span style="color: red;">*</span></label></big>&nbsp;
    <select name="stufgender" class="input">
    <option value="">-select--</option>
    <option>Male</option>
    <option>Mx</option>
    </select>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;
    <big><label for="stufdob">Birthdate<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp;&nbsp; <input size="15" name="stufdob" class="input" type="date">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;&nbsp;
    <big><label for="stufmobile">Mobile<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; <input size="15" class="input" name="stufmobile">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stufemail">Email<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp; <input size="19" class="input" name="stufemail" type="email">
    </fieldset>
    <fieldset style="width: 1012px;">
    <legend><br>
    <span style="font-weight: bold; font-family: Comic Sans MS;">Address
    Details</span></legend>
    <div style="width: 1021px;" class="form-group">
    <big><label for="stufaddress">If address different than Applicant's address please tick the checkbox? <span style="color: red;">*</span></label></big>&nbsp;&nbsp;<input type="checkbox" id="sccb" name="stufaddress" value="stufaddress"><br><br>
    <big><label for="stufadd1">Add. Line 1<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp;&nbsp;&nbsp;&nbsp; <input type="text" class="input" id="cns" name="stufadd1" disabled="disabled"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; <big><label for="stufadd2">Add. Line 2</label></big>
    &nbsp; &nbsp; &nbsp;&nbsp; <input type="text" class="input" id="cns2" name="stufadd2" disabled="disabled"/>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    <big><label for="stufadd3">Add. Line 3</label></big>
    &nbsp;<input type="text" class="input" id="cns3" name="stufadd3" disabled="disabled" size="18"/><br>
    <br>
    <big><label for="stufcity">City<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp;
    <input size="15" class="input" type="text" id="cns4" name="stufcity" disabled="disabled"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stufstate">State<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;
    <input size="15" class="input" type="text" id="cns5" name="stufstate" disabled="disabled"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stufcountry">Country<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp;&nbsp;
    <input size="15" class="input" type="text" id="cns6" name="stufcountry" disabled="disabled"/>&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp; <big><label for="stufpincode">Pincode<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; <input size="10" class="input" type="text" id="cns7" name="stufpincode" disabled="disabled"/> </div>
    </fieldset>
    <br style="font-family: Comic Sans MS;">
    <fieldset>
    <legend style="font-weight: bold; font-family: Comic Sans MS;">Qualification
    Details</legend>
    <div style="width: 1021px;" class="form-group"><big><big><small><label for="stufpgd">Post Graduation </label></small><label for="stufpgd"></label></big>&nbsp;</big>&nbsp;&nbsp;
    <input name="stufpgd" class="input">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stufgd">Graduation</label></big>
    &nbsp; &nbsp; &nbsp;&nbsp; <input class="input" name="stufgd">
    &nbsp; &nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stuf12">12th Marks/Grade</label></big>
    &nbsp; <input size="10" class="input" name="stuf12"><br>
    <div style="width: 1021px;" class="form-group"><span style="color: red;">(include
    University name)</span>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <span style="color: red;">(include University name)</span><br>
    <br>
    <big><label for="stufpq">Profesional Qualification</label></big>
    &nbsp;
    <input name="stufpq" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stuf10">10th Mark/Grade</label></big> &nbsp; &nbsp; <input size="10" class="input" name="stuf10">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stufalumni">School Alumni?</label></big>
    &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;
    <select name="stufalumni" class="input">
    <option value="">-select--</option>
    <option>Yes</option>
    <option>No
    </option>
    </select>
    </div>
    </div>
    </fieldset>
    <br>
    <div style="width: 1021px;" class="form-group">
    <fieldset><legend style="font-family: Comic Sans MS; font-weight: bold;">Job/Business
    Detail</legend>
    <div style="width: 1021px;" class="form-group"><big><label for="stufcname">Company Name</label></big>
    &nbsp;&nbsp; <input name="stufcname" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stufoccupation">Occupation</label></big>
    &nbsp; &nbsp; &nbsp;&nbsp; <input class="input" name="stufoccupation">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;
    <big><label for="stufdesignation">Designation</label></big>
    &nbsp;&nbsp; <input size="18" class="input" name="stufdesignation"><br>
    <br>
    <big><label for="stufcadd1">Add. Line 1</label></big>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; <input name="stufcadd1" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;&nbsp;
    <big><label for="stufcadd2">Add. Line 2</label></big>
    &nbsp; &nbsp; &nbsp;&nbsp; <input class="input" name="stufcadd2">&nbsp;&nbsp;
    &nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp;
    <big><label style="font-weight: bold;" for="stufcadd3">Add. Line 3</label></big>
    &nbsp; &nbsp;&nbsp; &nbsp; <input size="16" class="input" name="stufcadd3"><br>
    <br>
    <big><label for="stufccity">City</label></big>
    &nbsp;&nbsp;&nbsp; <input size="15" name="stufccity" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;
    <big><label for="stufcstate">State</label></big>
    &nbsp;&nbsp; <input size="15" class="input" name="stufcstate">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;
    <big><label for="stufcpincode">Pincode</label></big>
    &nbsp; <input size="15" class="input" name="stufcpincode">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stufdoj">Joining Date</label></big>
    &nbsp;&nbsp;&nbsp; <input class="input" name="stufdoj" size="15" type="date">
    </div>
    </fieldset>
    </div>
    </fieldset>
            </div>
          </div>
        </div>
        <div class="panel panel-default">
          <div class="panel-heading">
            <h4 class="panel-title">
              <a data-toggle="collapse" data-parent="#accordion" href="#collapse2">Collapsible Group 2</a>
            </h4>
          </div>
          <div id="collapse2" class="panel-collapse collapse">
            <div class="panel-body">
    <fieldset>
    <fieldset style="width: 1031px;"><legend style="font-weight: bold; font-family: Comic Sans MS;">Personal Details</legend><br>
    <div style="width: 1021px;" class="form-group"> <big><label for="stumtitle">Title<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp; &nbsp;&nbsp;
    <select name="stumtitle" class="input">
    <option value="">-select--</option>
    <option>Mrs</option>
    <option>Ms</option>
    <option>Miss</option>
    <option>Dr</option>
    </select>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;
    <big><label for="stumfname">Firstname<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp;
    <input size="15" name="stumfname" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stummname">Middlename<span style="color: red;">*</span></label></big>&nbsp;
    <input size="15" class="input" name="stummname">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stumsname">Surname<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp; <input size="16" class="input" name="stumsname"></div>
    <br>
    <big><label for="stumgender">Gender<span style="color: red;">*</span></label></big>&nbsp;
    <select name="stumgender" class="input">
    <option value="">-select--</option>
    <option>Female</option>
    <option>Mx</option>
    </select>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;
    <big><label for="stumdob">Birthdate<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp;&nbsp; <input size="15" name="stumdob" class="input" type="date">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;&nbsp;
    <big><label for="stummobile">Mobile<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; <input size="15" class="input" name="stummobile">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stumemail">Email<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp; <input size="19" class="input" name="stumemail" type="email">
    </fieldset>
    <fieldset style="width: 1012px;">
    <legend><br>
    <span style="font-weight: bold; font-family: Comic Sans MS;">Address
    Details</span></legend>
    <div style="width: 1021px;" class="form-group">
    <big><label for="stumaddress">If address different than Applicant's address please tick the checkbox? <span style="color: red;">*</span></label></big><big>&nbsp;&nbsp;<input type="checkbox" id="sccb1" name="stumaddress" value="stumaddress"><br><br>
    <label for="stumadd1">Add. Line 1<span style="color: red;">*</span></label>
    &nbsp; &nbsp;&nbsp;&nbsp;&nbsp; <input type="text" id="cns8" class="input" name="stumadd1" disabled="disabled"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; <label for="stumadd2">Add. Line 2</label>
    &nbsp; &nbsp; &nbsp;&nbsp; <input type="text" id="cns9" class="input" name="stumadd2" disabled="disabled"/>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    <label for="stumadd3">Add. Line 3</label>
    &nbsp; <input size="18" type="text" id="cns10" class="input" name="stumadd3" disabled="disabled"/><br>
    <br>
    <label for="stumcity">City<span style="color: red;">*</span></label>
    &nbsp;&nbsp;&nbsp;
    <input size="15" type="text" id="cns11" class="input" name="stumcity" disabled="disabled"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <label for="stumstate">State<span style="color: red;">*</span></label>
    &nbsp;&nbsp;
    <input size="15" type="text" id="cns12" class="input" name="stumstate" disabled="disabled"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <label for="stumcountry">Country<span style="color: red;">*</span></label>
    &nbsp;&nbsp;&nbsp;&nbsp;
    <input size="15" type="text" id="cns13" class="input" name="stumcountry" disabled="disabled"/>&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp;<label for="stumpincode">Pincode<span style="color: red;">*</span></label>
    &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; <input size="10" type="text" id="cns14" class="input" name="stumpincode" disabled="disabled"/></div>
    </fieldset>
    <br style="font-family: Comic Sans MS;">
    <fieldset>
    <legend style="font-weight: bold; font-family: Comic Sans MS;">Qualification
    Details</legend>
    <div style="width: 1021px;" class="form-group"><big><big><small><label for="stumpgd">Post Graduation </label></small><label for="stumpgd"></label></big>&nbsp;</big>&nbsp;&nbsp;
    <input name="stumpgd" class="input">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stumgd">Graduation</label></big>
    &nbsp; &nbsp; &nbsp;&nbsp; <input class="input" name="stumgd">
    &nbsp; &nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stum12">12th Marks/Grade</label></big>
    &nbsp; <input size="10" class="input" name="stum12"><br>
    <div style="width: 1021px;" class="form-group"><span style="color: red;">(include
    University name)</span>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <span style="color: red;">(include University name)</span><br>
    <br>
    <big><label for="stumpq">Profesional Qualification</label></big>
    &nbsp;
    <input name="stumpq" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stum10">10th Mark/Grade</label></big> &nbsp; &nbsp; <input size="10" class="input" name="stum10">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stumalumni">School Alumni?</label></big>
    &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;
    <select name="stumalumni" class="input">
    <option value="">-select--</option>
    <option>Yes</option>
    <option>No
    </option>
    </select>
    </div>
    </div>
    </fieldset>
    <br>
    <div style="width: 1021px;" class="form-group">
    <fieldset><legend style="font-family: Comic Sans MS; font-weight: bold;">Job/Business
    Detail</legend>
    <div style="width: 1021px;" class="form-group"><big><label for="stumcname">Company Name</label></big>
    &nbsp;&nbsp; <input name="stumcname" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stumoccupation">Occupation</label></big>
    &nbsp; &nbsp; &nbsp;&nbsp; <input class="input" name="stumoccupation">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;
    <big><label for="stumdesignation">Designation</label></big>
    &nbsp;&nbsp; <input size="18" class="input" name="stumdesignation"><br>
    <br>
    <big><label for="stumcadd1">Add. Line 1</label></big>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; <input name="stumcadd1" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;&nbsp;
    <big><label for="stumcadd2">Add. Line 2</label></big>
    &nbsp; &nbsp; &nbsp;&nbsp; <input class="input" name="stumcadd2">&nbsp;&nbsp;
    &nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp;
    <big><label style="font-weight: bold;" for="stumcadd3">Add. Line 3</label></big>
    &nbsp; &nbsp;&nbsp; &nbsp; <input size="16" class="input" name="stumcadd3"><br>
    <br>
    <big><label for="stumccity">City</label></big>
    &nbsp;&nbsp;&nbsp; <input size="15" name="stumccity" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;
    <big><label for="stumcstate">State</label></big>
    &nbsp;&nbsp; <input size="15" class="input" name="stumcstate">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;
    <big><label for="stumcpincode">Pincode</label></big>
    &nbsp; <input size="15" class="input" name="stumcpincode">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stumdoj">Joining Date</label></big>
    &nbsp;&nbsp;&nbsp; <input class="input" name="stumdoj" size="15" type="date">
    </div>
    </fieldset>
    </div>
    </fieldset>
            </div>
          </div>
        </div>
        <div class="panel panel-default">
          <div class="panel-heading">
            <h4 class="panel-title">
              <a data-toggle="collapse" data-parent="#accordion" href="#collapse3">Collapsible Group 3</a>
            </h4>
          </div>
          <div id="collapse3" class="panel-collapse collapse">
            <div class="panel-body">
    <fieldset>
    <fieldset style="width: 1031px;"><legend style="font-weight: bold; font-family: Comic Sans MS;">Personal Details</legend><br>
    <div style="width: 1021px;" class="form-group"> <big><label for="stugtitle">Title<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp; &nbsp;&nbsp;
    <select name="stugtitle" class="input">
    <option value="">-select--</option>
    <option>Mr</option>
    <option>Mrs</option>
    <option>Ms</option>
    <option>Miss</option>
    <option>Dr</option>
    </select>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;
    <big><label for="stugfname">Firstname<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp;
    <input size="15" name="stugfname" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stugmname">Middlename<span style="color: red;">*</span></label></big>&nbsp;
    <input size="15" class="input" name="stugmname">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stugsname">Surname<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp; <input size="16" class="input" name="stugsname"></div>
    <br>
    <big><label for="stuggender">Gender<span style="color: red;">*</span></label></big>&nbsp;
    <select name="stuggender" class="input">
    <option value="">-select--</option>
    <option>Male</option>
    <option>Female</option>
    <option>Mx</option>
    </select>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;
    <big><label for="stugdob">Birthdate<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp;&nbsp; <input size="15" name="stugdob" class="input" type="date">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;&nbsp;
    <big><label for="stugmobile">Mobile<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; <input size="15" class="input" name="stugmobile">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stugemail">Email<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp; <input size="19" class="input" name="stugemail" type="email">
    </fieldset>
    <fieldset style="width: 1012px;">
    <legend><br>
    <span style="font-weight: bold; font-family: Comic Sans MS;">Address
    Details</span></legend>
    <div style="width: 1021px;" class="form-group">
    <big><label for="stugaddress">If address different than Applicant's address please tick the checkbox?<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;<input type="checkbox" id="sccb2" name="stugaddress" value="stugaddress"><br><br>
    <big><label for="stugadd1">Add. Line 1<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp;&nbsp;&nbsp;&nbsp; <input type="text" id="cns15" class="input" name="stugadd1" disabled="disabled"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; <big><label for="stugadd2">Add. Line 2</label></big>
    &nbsp; &nbsp; &nbsp;&nbsp; <input type="text" id="cns16" class="input" name="stugadd2" disabled="disabled"/>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    <big><label for="stugadd3">Add. Line 3</label></big>
    &nbsp; <input size="18" type="text" id="cns17" class="input" name="stugadd3" disabled="disabled"/><br>
    <br>
    <big><label for="stugcity">City<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp;
    <input size="15" type="text" id="cns18" class="input" name="stugcity" disabled="disabled"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stugstate">State<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;
    <input size="15" type="text" id="cns19" class="input" name="stugstate" disabled="disabled"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stugcountry">Country<span style="color: red;">*</span></label></big>
    &nbsp;&nbsp;&nbsp;&nbsp;
    <input size="15" type="text" id="cns20" class="input" name="stugcountry" disabled="disabled"/>&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp; <big><label for="stugpincode">Pincode<span style="color: red;">*</span></label></big>
    &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; <input size="10" type="text" id="cns21" class="input" name="stumgpincode" disabled="disabled"/></div>
    </fieldset>
    <br style="font-family: Comic Sans MS;">
    <fieldset>
    <legend style="font-weight: bold; font-family: Comic Sans MS;">Qualification
    Details</legend>
    <div style="width: 1021px;" class="form-group"><big><big><small><label for="stugpgd">Post Graduation </label></small><label for="stugpgd"></label></big>&nbsp;</big>&nbsp;&nbsp;
    <input name="stugpgd" class="input">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stuggd">Graduation</label></big>
    &nbsp; &nbsp; &nbsp;&nbsp; <input class="input" name="stuggd">
    &nbsp; &nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stug12">12th Marks/Grade</label></big>
    &nbsp; <input size="10" class="input" name="stug12"><br>
    <div style="width: 1021px;" class="form-group"><span style="color: red;">(include
    University name)</span>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <span style="color: red;">(include University name)</span><br>
    <br>
    <big><label for="stugpq">Profesional Qualification</label></big>
    &nbsp;
    <input name="stugpq" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stug10">10th Mark/Grade</label></big> &nbsp; &nbsp; <input size="10" class="input" name="stug10">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stugalumni">School Alumni?</label></big>
    &nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;
    <select name="stugalumni" class="input">
    <option value="">-select--</option>
    <option>Yes</option>
    <option>No
    </option>
    </select>
    </div>
    </div>
    </fieldset>
    <br>
    <div style="width: 1021px;" class="form-group">
    <fieldset><legend style="font-family: Comic Sans MS; font-weight: bold;">Job/Business
    Detail</legend>
    <div style="width: 1021px;" class="form-group"><big><label for="stugcname">Company Name</label></big>
    &nbsp;&nbsp; <input name="stugcname" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <big><label for="stugoccupation">Occupation</label></big>
    &nbsp; &nbsp; &nbsp;&nbsp; <input class="input" name="stugoccupation">
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;
    <big><label for="stugdesignation">Designation</label></big>
    &nbsp;&nbsp; <input size="18" class="input" name="stugdesignation"><br>
    <br>
    <big><label for="stugcadd1">Add. Line 1</label></big>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; <input name="stugcadd1" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;&nbsp;
    <big><label for="stugcadd2">Add. Line 2</label></big>
    &nbsp; &nbsp; &nbsp;&nbsp; <input class="input" name="stugcadd2">&nbsp;&nbsp;
    &nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp;
    <big><label style="font-weight: bold;" for="stugcadd3">Add. Line 3</label></big>
    &nbsp; &nbsp;&nbsp; &nbsp; <input size="16" class="input" name="stugcadd3"><br>
    <br>
    <big><label for="stugccity">City</label></big>
    &nbsp;&nbsp;&nbsp; <input size="15" name="stugccity" class="input">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;
    <big><label for="stugcstate">State</label></big>
    &nbsp;&nbsp; <input size="15" class="input" name="stugcstate">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;
    <big><label for="stugcpincode">Pincode</label></big>
    &nbsp; <input size="15" class="input" name="stugcpincode">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;
    <big><label for="stugdoj">Joining Date</label></big>
    &nbsp;&nbsp;&nbsp; <input class="input" name="stugdoj" size="15" type="date">
    </div>
    </fieldset>
    </div>
    </fieldset>
            </div>
          </div>
        </div>
    <div class="panel panel-default">
          <div class="panel-heading">
            <h4 class="panel-title">
              <a data-toggle="collapse" data-parent="#accordion" href="#collapse4">Sibling Detail</a>
            </h4>
          </div>
          <div id="collapse4" class="panel-collapse collapse">
            <div class="panel-body">
    		 
    
    
    <big style="font-family: Comic Sans MS;"><big>Select Number of siblings<span
    style="color: red; font-weight: bold;">*</span></big></big><span
    style="font-family: Comic Sans MS;"> </span>&nbsp;&nbsp;
    <select name="app_siblingno" class="input">
    <option>select one</option>
    <option>0</option>
    <option>1</option>
    <option>2</option>
    <option>3</option>
    <option>4</option>
    <option>5</option>
    <option>6</option>
    </select>
    <br>
    <br>
    <table style="text-align: left; width: 100px;" border="0"
    cellpadding="0" cellspacing="0">
    <tbody>
    <tr>
    <td colspan="6" rowspan="1" style="vertical-align: top;">
    </td>
    </tr>
    <tr>
    <td style="vertical-align: top;">S.No 1
    </td>
    <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp;&nbsp;Name&nbsp;&nbsp;&nbsp;&nbsp;<input name="app_siblingname1">
    </td>
    <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp;&nbsp;Birthdate<input name="app_siblingdob1">
    </td>
    <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp;&nbsp;Class<select name="app_siblingclass1">
    <option>select one</option>
    <option>XII</option>
    <option>XI</option>
    <option>X</option>
    <option>IX</option>
    <option>VIII</option>
    <option>VII</option>
    <option>VI</option>
    <option>V</option>
    <option>IV</option>
    <option>III</option>
    <option>II</option>
    <option>I</option>
    <option>KG/Prep</option>
    <option>Nursery</option>
    </td>
    <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp;&nbsp;Gender<select name="app_siblinggender1">
    <option>select one</option>
    <option>Male</option>
    <option>Female</option>
    <option>Mx</option>
    </td>
    <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp;&nbsp;School Name<input name="app_schlname1">
    </td>
    </tr>
    <tr>
    <td style="vertical-align: top;">2
    </td>
    <td style="vertical-align: top;"><input name="app_siblingname2">
    </td>
    <td style="vertical-align: top;"><input name="app_siblingdob2">
    </td>
    <td style="vertical-align: top;"><select name="app_siblingclass2">
    <option>select one</option>
    <option>XII</option>
    <option>XI</option>
    <option>X</option>
    <option>IX</option>
    <option>VIII</option>
    <option>VII</option>
    <option>VI</option>
    <option>V</option>
    <option>IV</option>
    <option>III</option>
    <option>II</option>
    <option>I</option>
    <option>KG/Prep</option>
    <option>Nursery</option>
    </td>
    <td style="vertical-align: top;"><select name="app_siblinggender2">
    <option>select one</option>
    <option>Male</option>
    <option>Female</option>
    <option>Mx</option>
    </td>
    <td style="vertical-align: top;"><input name="app_siblingschlname2">
    </td>
    </tr>
    <tr>
    <td style="vertical-align: top;">3
    </td>
    <td style="vertical-align: top;"><input name="app_siblingname3">
    </td>
    <td style="vertical-align: top;"><input name="app_siblingdob3">
    </td>
    <td style="vertical-align: top;"><select name="app_siblingclass3">
    <option>select one</option>
    <option>XII</option>
    <option>XI</option>
    <option>X</option>
    <option>IX</option>
    <option>VIII</option>
    <option>VII</option>
    <option>VI</option>
    <option>V</option>
    <option>IV</option>
    <option>III</option>
    <option>II</option>
    <option>I</option>
    <option>KG/Prep</option>
    <option>Nursery</option>
    </td>
    <td style="vertical-align: top;"><select name="app_siblinggender3">
    <option>select one</option>
    <option>Male</option>
    <option>Female</option>
    <option>Mx</option>
    </td>
    <td style="vertical-align: top;"><input name="app_siblingschlname3">
    </td>
    </tr>
    <tr>
    <td style="vertical-align: top;">4
    </td>
    <td style="vertical-align: top;"><input name="app_siblingname4">
    </td>
    <td style="vertical-align: top;"><input name="app_siblingdob4">
    </td>
    <td style="vertical-align: top;"><select name="app_siblingclass4">
    <option>select one</option>
    <option>XII</option>
    <option>XI</option>
    <option>X</option>
    <option>IX</option>
    <option>VIII</option>
    <option>VII</option>
    <option>VI</option>
    <option>V</option>
    <option>IV</option>
    <option>III</option>
    <option>II</option>
    <option>I</option>
    <option>KG/Prep</option>
    <option>Nursery</option>
    </td>
    <td style="vertical-align: top;"><select name="app_siblinggender4">
    <option>select one</option>
    <option>Male</option>
    <option>Female</option>
    <option>Mx</option>
    </td>
    <td style="vertical-align: top;"><input name="app_siblingschlname4">
    </td>
    </tr>
    <tr>
    <td style="vertical-align: top;">5
    </td>
    <td style="vertical-align: top;"><input name="app_siblingname5">
    </td>
    <td style="vertical-align: top;"><input name="app_siblingdob5">
    </td>
    <td style="vertical-align: top;"><select name="app_siblingclass5">
    <option>select one</option>
    <option>XII</option>
    <option>XI</option>
    <option>X</option>
    <option>IX</option>
    <option>VIII</option>
    <option>VII</option>
    <option>VI</option>
    <option>V</option>
    <option>IV</option>
    <option>III</option>
    <option>II</option>
    <option>I</option>
    <option>KG/Prep</option>
    <option>Nursery</option>
    </td>
    <td style="vertical-align: top;"><select name="app_siblinggender5">
    <option>select one</option>
    <option>Male</option>
    <option>Female</option>
    <option>Mx</option>
    </td>
    <td style="vertical-align: top;"><input name="app_siblingschlname5">
    </td>
    </tr>
    <tr>
    <td style="vertical-align: top;">6
    </td>
    <td style="vertical-align: top;"><input name="app_siblingname6">
    </td>
    <td style="vertical-align: top;"><input name="app_siblingdob6">
    </td>
    <td style="vertical-align: top;"><select name="app_siblingclass6">
    <option>select one</option>
    <option>XII</option>
    <option>XI</option>
    <option>X</option>
    <option>IX</option>
    <option>VIII</option>
    <option>VII</option>
    <option>VI</option>
    <option>V</option>
    <option>IV</option>
    <option>III</option>
    <option>II</option>
    <option>I</option>
    <option>KG/Prep</option>
    <option>Nursery</option>
    </td>
    <td style="vertical-align: top;"><select name="app_siblinggender6">
    <option>select one</option>
    <option>Male</option>
    <option>Female</option>
    <option>Mx</option>
    </td>
    <td style="vertical-align: top;"><input name="app_siblingschlname6">
    </td>
    </tr>
    </tbody>
    </table>
    		</div>
          </div>
        </div>
    <div class="panel panel-default">
          <div class="panel-heading">
            <h4 class="panel-title">
              <a data-toggle="collapse" data-parent="#accordion" href="#collapse5">Document Upload</a>
            </h4>
          </div>
          <div id="collapse5" class="panel-collapse collapse">
            <div class="panel-body">
            Document Upload
    (Only PDF/JPE/JPEG)</span></big></big></label></big><big><br>
    </big><big>
    </big><big><span style="color: red;">(Note : File size
    should not be more than 100KB)</span></big><big><br>
    </big><big>
    </big><big><br>
    </big><big>
    </big><div class="form-group"><big>
    </big><big><big><label for="stupassport">1. Password</label></big></big><big>&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; </big><big><input name="stupassport" accept=".jpg,.pdf" class="input" type="file"></big><big> </big></div><big>
    </big><big><br>
    </big><big>
    </big><big><br>
    </big><big>
    </big><div class="form-group"><big><big><label for="stuic">2. Immunisation
    Certificate&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; <input name="stuic" accept=".jpg,.pdf" class="input" type="file"></label></big></big></div><big>
    </big><big><br>
    </big><big>
    </big><big><br>
    </big><big>
    </big><div class="form-group"><big>
    </big><big><big><label for="stutc">3. Transfer
    Certificate</label></big></big><big>&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; </big><big><input name="stutc" accept=".jpg,.pdf" class="input" type="file"></big></div><big>
    </big><big><br>
    </big><big>
    </big><big><br>
    </big><big>
    </big><div class="form-group"><big>
    </big><big><big><label for="stumrc">4. Marksheet/ Reportcard</label></big></big><big>
    &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; </big><big><input name="stumrc" accept=".jpg,.pdf" class="input" type="file"></big></div><big>
    </big><big><br>
    </big><big>
    </big><big><br>
    </big><big>
    </big><div class="form-group"><big>
    </big><big><big><label for="stumr">5. Medical Report</label></big></big><big>&nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; </big><big><input name="stumr" accept=".jpg,.pdf" class="input" type="file"></big></div><big>
    </big><big><br>
    </big><big>
    </big><big><br>
    </big><big>
    </big><div class="form-group"><big>
    </big><big><big><label for="stuod">6. Any Other Document</label></big></big><big>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp; &nbsp;&nbsp; &nbsp;</big><big><input name="stuod" accept=".jpg,.pdf" class="input" type="file"></big></div><big>
    </big><big><br>
    </big><big>
    </big>
            </div>
          </div>
        </div>
      </div>
    </div>
        
    </body>
    </html>
  • jagaurav
    New Member
    • Aug 2016
    • 11

    #2
    Can someone please help ??

    Comment

    • Dormilich
      Recognized Expert Expert
      • Aug 2008
      • 8694

      #3
      you include jQuery three times with different versions. in that case it would've been a miracle if that went well.

      Comment

      • jagaurav
        New Member
        • Aug 2016
        • 11

        #4
        can you please suggest me how can I achieve the desired result in that case ?

        Comment

        • Dormilich
          Recognized Expert Expert
          • Aug 2008
          • 8694

          #5
          well, start with including jQuery only once (I thought that one were obvious ...)

          Comment

          • gits
            Recognized Expert Moderator Expert
            • May 2007
            • 5390

            #6
            besides that i think that the logic for the 'select' handling is wrong. it applies the same handling for all select elements on that page which i think is not the intention, so that part probably needs to be fixed as well.

            Comment

            • jagaurav
              New Member
              • Aug 2016
              • 11

              #7
              I did try that but i wasnt sure how can I combine 3 different library into one. As my 3 javascripts are referring to 3 check boxes which enables the address fields and the jquery is being used for showing/dispalying the rows based on option chosen

              Comment

              • Dormilich
                Recognized Expert Expert
                • Aug 2008
                • 8694

                #8
                I did try that but i wasnt sure how can I combine 3 different library into one.
                you don't combine 3 jQuery versions into one. you use 1 jquery version (the latest possible one) that you know works with each part.

                Comment

                • jagaurav
                  New Member
                  • Aug 2016
                  • 11

                  #9
                  I did try looking into that but couldn't find it and that's why choose to go this way. Will you be able to help me please ?

                  Comment

                  • Dormilich
                    Recognized Expert Expert
                    • Aug 2008
                    • 8694

                    #10
                    then remove those 3 jQuery links and place one before bootstrap using version 2.2.4 (the latest jQuery 2 release)

                    Comment

                    • jagaurav
                      New Member
                      • Aug 2016
                      • 11

                      #11
                      I think I have boiled down the issue. The problem is table rows jquery. It doesn't seems to be working when run in the html here. However I am able to run it when running it standalone in a separate form. Is it getting conflicted ?

                      Comment

                      • Dormilich
                        Recognized Expert Expert
                        • Aug 2008
                        • 8694

                        #12
                        The problem is table rows jquery.
                        I have no idea what that could mean.

                        Comment

                        • jagaurav
                          New Member
                          • Aug 2016
                          • 11

                          #13
                          The jquery which is not working after including in html code is
                          Code:
                          <script>
                          
                          jQuery(function($){
                          $( document ).ready(function() {
                              $( "select" ).change(function () {
                                  var val = $( "select" ).val();
                                  if (val != 'select one') {
                                      var tableRows = $("table tr");
                                      jQuery.each(tableRows, function(i ,tr) {
                                          if (i > val) {
                                              $(tr).hide();
                                          } else {
                                              $(tr).show();
                                          }
                                      })
                                  }
                                }
                              )
                          });
                          });
                          
                          </script>
                          <big style="font-family: Comic Sans MS;"><big>Select Number of siblings<span
                          style="color: red; font-weight: bold;">*</span></big></big><span
                          style="font-family: Comic Sans MS;"> </span>&nbsp;&nbsp;
                          <select name="app_siblingno" class="input">
                          <option>select one</option>
                          <option>0</option>
                          <option>1</option>
                          <option>2</option>
                          <option>3</option>
                          <option>4</option>
                          <option>5</option>
                          <option>6</option>
                          </select>
                          <br>
                          <br>
                          <table style="text-align: left; width: 100px;" border="0"
                          cellpadding="0" cellspacing="0">
                          <tbody>
                          <tr>
                          <td colspan="6" rowspan="1" style="vertical-align: top;">
                          </td>
                          </tr>
                          <tr>
                          <td style="vertical-align: top;">S.No 1
                          </td>
                          <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp;&nbsp;Name&nbsp;&nbsp;&nbsp;&nbsp;<input name="app_siblingname1">
                          </td>
                          <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp;&nbsp;Birthdate<input name="app_siblingdob1">
                          </td>
                          <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp;&nbsp;Class<select name="app_siblingclass1">
                          <option>select one</option>
                          <option>XII</option>
                          <option>XI</option>
                          <option>X</option>
                          <option>IX</option>
                          <option>VIII</option>
                          <option>VII</option>
                          <option>VI</option>
                          <option>V</option>
                          <option>IV</option>
                          <option>III</option>
                          <option>II</option>
                          <option>I</option>
                          <option>KG/Prep</option>
                          <option>Nursery</option>
                          </td>
                          <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp;&nbsp;Gender<select name="app_siblinggender1">
                          <option>select one</option>
                          <option>Male</option>
                          <option>Female</option>
                          <option>Mx</option>
                          </td>
                          <td style="vertical-align: top;">&nbsp;&nbsp;&nbsp;&nbsp;School Name<input name="app_schlname1">
                          </td>
                          </tr>
                          <tr>
                          <td style="vertical-align: top;">2
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingname2">
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingdob2">
                          </td>
                          <td style="vertical-align: top;"><select name="app_siblingclass2">
                          <option>select one</option>
                          <option>XII</option>
                          <option>XI</option>
                          <option>X</option>
                          <option>IX</option>
                          <option>VIII</option>
                          <option>VII</option>
                          <option>VI</option>
                          <option>V</option>
                          <option>IV</option>
                          <option>III</option>
                          <option>II</option>
                          <option>I</option>
                          <option>KG/Prep</option>
                          <option>Nursery</option>
                          </td>
                          <td style="vertical-align: top;"><select name="app_siblinggender2">
                          <option>select one</option>
                          <option>Male</option>
                          <option>Female</option>
                          <option>Mx</option>
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingschlname2">
                          </td>
                          </tr>
                          <tr>
                          <td style="vertical-align: top;">3
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingname3">
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingdob3">
                          </td>
                          <td style="vertical-align: top;"><select name="app_siblingclass3">
                          <option>select one</option>
                          <option>XII</option>
                          <option>XI</option>
                          <option>X</option>
                          <option>IX</option>
                          <option>VIII</option>
                          <option>VII</option>
                          <option>VI</option>
                          <option>V</option>
                          <option>IV</option>
                          <option>III</option>
                          <option>II</option>
                          <option>I</option>
                          <option>KG/Prep</option>
                          <option>Nursery</option>
                          </td>
                          <td style="vertical-align: top;"><select name="app_siblinggender3">
                          <option>select one</option>
                          <option>Male</option>
                          <option>Female</option>
                          <option>Mx</option>
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingschlname3">
                          </td>
                          </tr>
                          <tr>
                          <td style="vertical-align: top;">4
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingname4">
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingdob4">
                          </td>
                          <td style="vertical-align: top;"><select name="app_siblingclass4">
                          <option>select one</option>
                          <option>XII</option>
                          <option>XI</option>
                          <option>X</option>
                          <option>IX</option>
                          <option>VIII</option>
                          <option>VII</option>
                          <option>VI</option>
                          <option>V</option>
                          <option>IV</option>
                          <option>III</option>
                          <option>II</option>
                          <option>I</option>
                          <option>KG/Prep</option>
                          <option>Nursery</option>
                          </td>
                          <td style="vertical-align: top;"><select name="app_siblinggender4">
                          <option>select one</option>
                          <option>Male</option>
                          <option>Female</option>
                          <option>Mx</option>
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingschlname4">
                          </td>
                          </tr>
                          <tr>
                          <td style="vertical-align: top;">5
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingname5">
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingdob5">
                          </td>
                          <td style="vertical-align: top;"><select name="app_siblingclass5">
                          <option>select one</option>
                          <option>XII</option>
                          <option>XI</option>
                          <option>X</option>
                          <option>IX</option>
                          <option>VIII</option>
                          <option>VII</option>
                          <option>VI</option>
                          <option>V</option>
                          <option>IV</option>
                          <option>III</option>
                          <option>II</option>
                          <option>I</option>
                          <option>KG/Prep</option>
                          <option>Nursery</option>
                          </td>
                          <td style="vertical-align: top;"><select name="app_siblinggender5">
                          <option>select one</option>
                          <option>Male</option>
                          <option>Female</option>
                          <option>Mx</option>
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingschlname5">
                          </td>
                          </tr>
                          <tr>
                          <td style="vertical-align: top;">6
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingname6">
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingdob6">
                          </td>
                          <td style="vertical-align: top;"><select name="app_siblingclass6">
                          <option>select one</option>
                          <option>XII</option>
                          <option>XI</option>
                          <option>X</option>
                          <option>IX</option>
                          <option>VIII</option>
                          <option>VII</option>
                          <option>VI</option>
                          <option>V</option>
                          <option>IV</option>
                          <option>III</option>
                          <option>II</option>
                          <option>I</option>
                          <option>KG/Prep</option>
                          <option>Nursery</option>
                          </td>
                          <td style="vertical-align: top;"><select name="app_siblinggender6">
                          <option>select one</option>
                          <option>Male</option>
                          <option>Female</option>
                          <option>Mx</option>
                          </td>
                          <td style="vertical-align: top;"><input name="app_siblingschlname6">
                          </td>
                          </tr>
                          </tbody>
                          </table>
                          But this is working standalone

                          Comment

                          • Dormilich
                            Recognized Expert Expert
                            • Aug 2008
                            • 8694

                            #14
                            Code:
                            var val = $( "select" ).val();
                            this will always refer to the first <select>. not the one that triggered the event.

                            for that you would use
                            Code:
                            var val = this.value;

                            Comment

                            • jagaurav
                              New Member
                              • Aug 2016
                              • 11

                              #15
                              thanks a million..it works perfectly....

                              Comment

                              Working...