After manually testing out the CSS and confirming that applying
display: none;
achieves the desired effect, I now want to use jQuery to make this happen by clicking a link on the page.
This will be my first time altering CSS through jQuery, so let me explain what I'm attempting to do here:
I have an anchor tag as follows:
<a id="one" href="#">click</a>
and then a heading with another anchor inside:
<h3 id="two"><a href="#">link</a></h3>
The goal is to click the first link and then apply
display: none;
to the h3 element labeled 'two.'
Your help would be greatly appreciated. This is my first question on this platform, and while I usually prefer researching things on my own, I feel like I'm just missing something simple here and decided it's best to seek assistance from others.