Skip to main content

Bug Tracker

Side navigation

#3532 closed bug (invalid)

Opened October 28, 2008 11:14AM UTC

Closed December 23, 2008 02:28PM UTC

Wrap sometimes duplicates the wrong object.

Reported by: Julian-Birch Owned by:
Priority: major Milestone: 1.3
Component: core Version: 1.2.6
Keywords: Cc:
Blocked by: Blocking:
Description

The following HTML page should show one textbox. Instead it shows two. This has been tested in IE6, FF3 and Chrome.

<html>

<head>

<script type="text/javascript" src="/jquery-1.2.6.js"></script>

<script type="text/javascript">

$(document).ready(function() {

elements = $("div > *");

elements.wrap("span");

});

</script>

</head>

<body>

<div class='Box'>

<form>

<label for='repeat'>Repeat</label>

<span>

<input id='repeat' type='text' value='Box1' />

</span>

</div>

</form>

</body>

</html>

Attachments (0)
Change History (3)

Changed October 31, 2008 11:50AM UTC by Julian-Birch comment:1

Sorry, the html was slightly incorrect.

<div class='Box'> <form>

should, of course, have read

<form> <div class='Box'>

In fact, once the correction to the test case is made, it shows 4 text boxes...

Changed November 07, 2008 05:06PM UTC by Julian-Birch comment:2

Sorry, this ticket is incorrect. Please close.

Changed December 23, 2008 02:28PM UTC by dmethvin comment:3

resolution: → invalid
status: newclosed

Closed per your request.