Opened 16 years ago
Closed 16 years ago
#417 closed bug (fixed)
.html not working properly in opera 9.02
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | major | Milestone: | 1.1a |
Component: | core | Version: | 1.1a |
Keywords: | html opera | Cc: | |
Blocked by: | Blocking: |
Description
Seems .html reformat input string. For example:
$("#selectBox").html("<option>One</option><option>Two</option>");
Result: <select id="selectBox"> <option>One <option>Two </select>
Workaround: $("#selectBox").empty().append("<option>One</option><option>Two</option>");
Change History (4)
comment:1 Changed 16 years ago by
Milestone: | → 1.1 |
---|---|
Version: | 1.0 → 1.1 |
comment:2 Changed 16 years ago by
comment:3 Changed 16 years ago by
05fa3847f20e Great work http://www.abc-acupuncture.com/qowacan phentermine 37.5
Note: See
TracTickets for help on using
tickets.
This is the Opera relaited bug. Simple js:
document.getElementById('selectBox').innerHTML="<option>One</option><option>Two</option>";
Also not working.