Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Other Programming › Web Languages › Need help with Java Script Combo Box

Need help with Java Script Combo Box

Posts 1–2 of 2 · Page 1 of 1
MO
money001
Need help with Java Script Combo Box
Hi, so i'm trying to develop a combo box where if the user selects one option, it will show a list of options and if the user selects a different option all of the options change. And when the page loads the page is empty except for the one combo box, and more pop up as it goes along. Here is my current code that i've got, and it works for one way, but i need it two+ ways.

Code:
Code for Drop down menu show more options (only working for 1 option currently)


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
	<title>Test</title>
    <script type="text/javascript">
        <!--
            function officeSelect() {
                var other = document.getElementById("officeShow");
                if (document.forms[0].theItems.options[document.forms[0].theItems.selectedIndex].value == "office") {
                    other.style.visibility = "visible";
                }
                else {
                    other.style.visibility = "hidden";
                }
            }
        //-->
    </script>
</head>
<body>
<form action="" method="">
    <select name="theItems" onchange="officeSelect()">
        <option value="-1">Select...</option>
        <option value="home">Home</option>
        <option value="office">Office</option>      
    </select>
    <div style
    <div id="officeShow" style="visibility: hidden;">
        Office Stuff: <input name="officeField" type="text" /> 
    </div>
</form>


</body>
</html>
Thanks to any one who can help me
#1 · 14y ago
Web-Designer
Web-Designer
Below is a link to something like what your describing, if that doesn't help much then message me and I'm sure I can help you with it.

Code:
http://tutorialzine.com/2011/11/chained-ajax-selects-jquery/
#2 · edited 14y ago · 14y ago
Posts 1–2 of 2 · Page 1 of 1

Post a Reply

Similar Threads

  • Need help with my ScriptBy hannemannen in Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    8Last post 14y ago
  • need help with weapond scriptBy pepelas2 in WarRock Help
    2Last post 15y ago
  • need help with rs scriptsBy Idrawheart in Runescape Hacks / Bots
    1Last post 15y ago
  • need help with javaBy abonabel in CrossFire Help
    5Last post 15y ago
  • Need help with log in box!!By lolipop12345 in CrossFire Mods & Rez Modding
    6Last post 16y ago

Tags for this Thread

None