jQuery: The Write Less, Do More JavaScript Library

Ticket #2217 (closed bug: fixed)

Opened 4 months ago

Last modified 4 months ago

(1.2.2)clone TR dosn't work in IE

Reported by: bigxxs Assigned to: anonymous
Type: bug Priority: major
Milestone: 1.2.2 Component: core
Version: 1.2.2 Keywords: clone
Cc: Needs: Review

Description

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>test</title>
    <script language="JavaScript" src="jquery-1.2.2.js"></script>
	<script language="JavaScript">
	<!--
		$(function(){
			$('button').click(function(){
				var TR = $('#firstLine');
				TR.clone().insertAfter(TR);
			});
		});
	//-->
	</script>
</head>
<body>
<button>test</button>
<table border="1">
<tr id="firstLine">
	<td>AAA</td>
	<td>BBB</td>
	<td>CCC</td>
</tr>
</table>
</body>

Attachments

Change History

Changed 4 months ago by bigxxs

Sorry, I have just see #2184(fixed)

Changed 4 months ago by scott.gonzalez

  • status changed from new to closed
  • resolution set to fixed
Note: See TracTickets for help on using tickets.