The bottom line is that on every row, I have an input field (allocated). Should my user make any changes to that dollar amount, as soon as they finish, my save icon become visible to the immediate right.
My JavaScript looks like this:
function visibility() { document.getElementById('save_1').style.visibility = 'visible';}
You'll notice that my ID is "save_1." I started playing with the id on the HTML side and you can see the beginning of that thought process where you see ;<div id='save_".$i."'
I'm thinking that this is possible: I want to pass that "$i" value into my JavaScript function so that it makes the correct row visible and I'm not having to write the same script over and over again, which I couldn't in any case because I'm never going to have the same number of rows.
So, how can I pass that "$i" value into my script so I can have that save icon show up on every row?