This is my JavaScript, using jQuery:
$("#E_DIV_H input[value='E,F']").attr('checked', 'checked');
var data = $('#E_DIV_H').html();
$('#copy').html(data);
When it copies the data from one <div>
(#E_DIV_H
) to another DIV (#copy
), it unchecks the check box, which should already be checked due to the following code!
$("#E_DIV_H input[value='E,F']").attr('checked', 'checked');
Using Firebug, I see that .attr('checked', 'checked')
is checking the check box without adding the attribute.
Is there any solution that works cross-browser? I’m using jQuery 1.4.2.
If you want to copy an element, use
.clone()
. Working with HTML is messy.Anyways, the reason it isn’t working is probably because (as you know)
.prop()
was introduced in 1.6.0; before then,.attr()
did its job and is probably setting the property instead of the attribute.To update boolean attribute as
checked
in jQuery version <1.6, you should use javascriptsetAttribute()
method, e.g:If you have more than one element to target, then you have to iterate through collection, e.g: