I have HTML list that looks like :
<ul>
<li>something</li>
<li>something1</li>
<li>something2</li>
<ul>
<div class="randomwrapper">
<img src="<?php echo $databaseresult[$i];?>">
<img src="<?php echo $databaseresult[$i];?>">
<img src="<?php echo $databaseresult[$i];?>"> // result looks like : ../assets/images/20584878157.jpg
</div>
then I have a table that looks like:
is it possible to create jquery function with ajax that will send f.e.:"something1" to "process.php"(PHP file that I will create in order to process data) which will return the image name (22287895.jpg) and then the jquery function will hide any image that has the "imgname"(22287895.jpg) in it?
i'm able to create process.php but i have no skills with jquery and ajax. I don't even know if its possible.
Thank you for any possible help/references
