You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.
I have a DIV element, which contains a radio element. when i try to set this DIV to another element, radio button gets unchecked.
when i try like this, radio getting unchecked.
$(".printdiv").html($(".printable").html());
when I try this it is working fine.
var strHtml = document.getElementsByClassName('printable').innerHTML;
$(".printdiv").html(strHtml);
The text was updated successfully, but these errors were encountered: