cos'è .editbox e come è tag form?
cos'è .editbox e come è tag form?
Cavicchi Andrea
Problemi con javascript, jquery, ajax clicca qui
Il tag form non c'è. Editbox è l'input:
Codice PHP:<table class="dataTable" style="white-space: nowrap">
<tr class="title">
<th rowspan="1" colspan="1" class="first-head">Nome</th>
<th rowspan="1" colspan="1" class="head">Posizione</th>
<th rowspan="1" colspan="1" class="head">Overall</th>
<th rowspan="1" colspan="1" class="head">Lotto</th>
</tr>
<?php do {
$id=$row_viewteamcoach['id'];
$lottery=$row_viewteamcoach['playerLottery'];?>
<tr id="<?php echo $id; ?>" class="edit_tr">
<td class="table0"><?php echo $row_viewteamcoach['playerName'];?></td>
<td class="table1"><?php echo $row_viewteamcoach['playerPosition'];?></td>
<td class="table1"><span class="labelov"><?php echo $row_viewteamcoach['playerOverall']; ?></span></td>
<td class="table1"><span id="first_<?php echo $id;?>" class="text"><?php echo $lottery; ?></span>
<input size="1" maxlength="2" type="text" value="<?php echo $lottery;?>" class="editbox" id="first_input_<?php echo $id; ?>"/><img style="cursor:pointer" src="images/inline_edit.png" width="15" height="15"/></td>
</tr>
<?php } while ($row_viewteamcoach = mysql_fetch_assoc($viewteamcoach)); ?>
</table>