Opened 14 years ago
Closed 14 years ago
#3532 closed bug (invalid)
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>
Change History (3)
comment:1 Changed 14 years ago by
comment:3 Changed 14 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Closed per your request.
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...