[Solved] how to change values in a hidden chunk of html code


You can get a reference to your div like this:

var $div = $('#hiddenChart');

To clone it,

var $clonedDiv = $div.clone();

Then, in the $cloneDiv object, you make the changes:

$clonedDiv.find(--selector of a node--).attr(atributeName, atributeValue); //change/add attribute
$clonedDiv.find(--selector of a node--).removeAttr(atributeName); //remove attribute

And so on. I won’t explain how jQuery works, Lekhnath gave you a link.

Finally you insert the $clonedDiv with .appendTo() wherever you want. The original div remains untouched so you can clone it again and again.

1

solved how to change values in a hidden chunk of html code