Dropdown only shows table after 1st time choosing [SOLVED]

Hi Sadie :slight_smile:

Notice that the testuparrowmd_click function hides the table elements.
Then when you try to expand() the tables, they do expand, however they remain hidden.

Try replacing the hide() calls with collapse() and it should solve the problem:

export function testuparrowmd_click(event, $w) {
	//Add your code for this event here: 
	$w("#marylandcountydropddown").collapse();
	$w("#testuparrowmd").hide();
	$w("#MdDownArrow").show();
	$w("#VAbox").show();
	$w("#DCbox").show();
	$w("#AnneArundel").collapse();
	$w("#baltimore").collapse();
	$w("#baltimoreCITY").collapse();
	$w("#Calvert").collapse();
	$w("#Carroll").collapse();
	$w("#charles").collapse();
	$w("#frederick").collapse();
	$w("#harford").collapse();
	$w("#howard").collapse();
	$w("#montgomery").collapse();
	$w("#PrinceGeorges").collapse();
	$w("#Washington").collapse();
}