I'm looking to customize the dropdown select on my website by changing the arrow icon to a plus icon, which will then turn into a minus icon when clicked and the choices are displayed. I'm new to jquery and eager to learn more about this language. Can anyone assist me with coding this? Below is a snippet of the code I have been working on.
<form action="/action_page.php" class = "footer-dropdown">
<fieldset>
<select class = "select-div" name="template">
<option active value="item1">Related Sites</option>
<option value="item2">Sungshin Women's University</option>
<option value="item3">Sungshin Women's University Lifelong Education Center</option>
</select>
</fieldset>
</form>
<!-- Here is my dropdown menu code snippet -->