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 6986899
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:52:03+00:00 2026-05-27T18:52:03+00:00

I don’t know much about Javascript and Jquery, but I do have to use

  • 0

I don’t know much about Javascript and Jquery, but I do have to use it on a HTML select tags. I have two database tables, grouptypes and groups. A grouptype can have multiple groups, but a group only belongs to one grouptype. I have two select tags, one is grouptypes and another one is groups. What I want to do is that whenever a user select a grouptype in the grouptypes dropdown menu, it triggers a handler to retrieve the corresponding groups that belong to that grouptype. I need javascript or Jquery to get it done, but I am not able to write it myself. So anyone can help me? I would so appreciate it.

 GroupType: <select name="groupType">

    <?php foreach($grouptypes as $type) : ?>

    <?php echo "<option value='" . $type['name'] . "'>" .$type['name']. "</option>"; ?>

    <?php endforeach ?>

  </select><br />


  Group: <select name="groups">

    <?php foreach($groups as $group) : ?>

    <?php echo "<option value='" . $group['name'] . "'>" .$group['name']. "</option>"; ?>

    <?php endforeach ?>

  </select><br />


  <?php 
    $query = "SELECT id, name FROM group_type";

    $grouptypes = $_db->getResultsForquery($query);


    $query = "SELECT id, name FROM groups";

    $groups = $_db->getResultsForquery($query);


  ?>
  • 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-27T18:52:04+00:00Added an answer on May 27, 2026 at 6:52 pm

    Here’s what I would do. It uses jquery to send a get to a page called groups.php which will return some html you can parse. Then you parse it 🙂

    $('#grouptype-select').change(function(){  //.change will detect when the select has been changed (an -option- has been chosen)
        var grouptype = $(this).val();   //create a variable from the -option- chosen
        $.get('groups.php', 'grouptype=' + grouptype, function(response){    //use jquery to send -get- to groups.php
            $('#list-of-groups').html(response);    //insert response into ur doc
        }
    });
    

    Something like http://www.yoursite.com?grouptype=abc will be sent using get asynchronously (ajax) Good luck!

    PS Here is a jsfiddle to get you tinkering: http://jsfiddle.net/yLyTw/1/

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

Sidebar

Related Questions

Don't know what I did wrong. I have two indices with identical documents in
I don't have much PHP experience and I want to know how to best
Don't know much about encryption... Say I'm preparing a SAML request to submit to
I don't know Perl. I don't even love it, but i'm obliged to use
Don't know why but I can't find a solution to this. I have 3
Don't really know how to formulate the title, but it should be pretty obvious
Don't know how to google for such, but is there a way to query
I don't want PHP errors to display /html, but I want them to display
Don't know if I worded the question right, but basically what I want to
(Don't know if this is strictly on-topic, but I don't see any better Stack

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.