Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/11/2013, 14:28
Mariuch
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Problema con checkbox IE10

Sí, acá está

Código HTML:
<form action="borrar.php" method="post">
	<fieldset>
		<table>
			<thead>
				<tr>
					<th>ENVIADO POR</th>
					<th>ASUNTO</th>
					<th>FECHA DE ENVIO</th>
					<th>SELECCIONAR</th>
				</tr>
			</thead>
			<tr>
				<td>Carlos</td>
				<td>Hola</td>
				<td>23-10-2013 - 13:25 hs</td>
				<td><input type="checkbox" name="checkMail[]" value="200" /></td>
			</tr>
			<tr>
				<td>Marcela</td>
				<td>Consulta</td>
				<td>29-10-2013 - 16:25 hs</td>
				<td><input type="checkbox" name="checkMail[]" value="150" /></td>
			</tr>
		</table>
		<input type="submit" value="Borrar" class="boton" />
	</fieldset>
</form>