In HTML, I have:
<td>
<span id="change_naco"></span>
<span id="naco">Food</span>
</td>
<td>
<span id="change_naco"></span>
<span id="naco">apples</span>
</td>
The rows come from the MySQL query. I need to load them in the function:
<script type="text/javascript">
EditInPlace.defaults['save_url'] = 'php/save.php?id=150';
$('naco').editInPlace({
form_type: 'select',
select_options: {
'1': 'food',
'2': 'apples',
'3': 'oranges',
'4': 'beer'
},
external_control: 'change_naco'
});
</script>
I know that I must call my ID's differently, so I can do that by adding a number via PHP, for example, change_naco1, change_naco2, change_naco3, and naco1, naco2, naco3, but do I pass those ID names to the function?
It's for edit in place (dropdown menu). It's working fine for one ID, but when I load more lines from the query, it works only for the first one.