Let's say I have a div that holds a button and an image. However I want to get that images source from a button click of that specific div. Example:
<div class="container">
<div class="inner-container">
<img src="fn4703gr5e" alt="">
<button>Get image source from only the image inside of this div</button>
</div>
<div class="inner-container">
<img src="7876jyhygfd" alt="">
<button>Get image source from only the image inside of this div</button>
</div>
<div class="inner-container">
<img src="mnbv5433sda" alt="">
<button>Get image source from only the image inside of this div</button>
</div>
</div>
I have something similar on a project that I am working on and have had a tough time finding a solution.