Side navigation
#6806 closed bug (invalid)
Opened July 20, 2010 06:03PM UTC
Closed December 02, 2010 08:08AM UTC
append function doesn't work correctly with tag on BlackBerry
Reported by: | dis004 | Owned by: | dis004 |
---|---|---|---|
Priority: | undecided | Milestone: | 1.5 |
Component: | manipulation | Version: | 1.4.2 |
Keywords: | append mobile blackberry | Cc: | |
Blocked by: | Blocking: |
Description
The "append" function doesn't work correctly when parameter contains tag inside.
For example, the following line doesn't work
$('#divListeProfession').empty().append('<div class="ligneContenu ligneContenuPatienter">Chargement...</div>');
We must rewrite this line like below to be functional
$('#divListeProfession').empty();
$('<div></div>').attr('class', 'ligneContenu ligneContenuPatienter').append('Chargement...').appendTo('#divListeProfession');
BlackBerry 8530, v5.0.0.337
Browser: BlackBerry
Attachments (0)
Change History (4)
Changed August 23, 2010 06:40PM UTC by comment:1
Changed October 23, 2010 11:47PM UTC by comment:2
component: | unfiled → manipulation |
---|---|
keywords: | → append mobile blackberry |
milestone: | 1.4.3 → 1.5 |
owner: | → dis004 |
priority: | → undecided |
status: | new → pending |
Please confirm that this no longer works in jquery 1.4.3 and provide a reduced test case.
Changed November 01, 2010 05:47AM UTC by comment:3
Confirmed bug in 1.4.3
Changed December 02, 2010 08:08AM UTC by comment:4
resolution: | → invalid |
---|---|
status: | pending → closed |
Automatically closed due to 14 days of inactivity.
More details in #6803.