Modify ↓
Ticket #417 (closed bug: fixed)
.html not working properly in opera 9.02
| Reported by: | baverman@… | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.1a |
| Component: | core | Version: | 1.1a |
| Keywords: | html opera | Cc: | |
| Blocking: | Blocked by: |
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
comment:2 Changed 7 years ago by baverman@…
This is the Opera relaited bug. Simple js:
document.getElementById('selectBox').innerHTML="<option>One</option><option>Two</option>";
Also not working.
comment:3 Changed 6 years ago by phentermine
05fa3847f20e Great work http://www.abc-acupuncture.com/qowacan phentermine 37.5
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.
