@pamelaharper,
I also forgo to mention that the form information is in the script.
var newDiv = document.createElement("div");
newDiv.id "newcc";
newDiv.className = "creditCardSummaryWrapper";
//This takes care of appending itselt so newDiv will have an id and class
<div id="newcc " class="creditCardSummaryWrapper">
/*********************************************************/
//Create a paragraph tag
var para = document.createElement("p");
var node=document.createTextNode("CardNumber:cshadow Experation:monthyear");
para.appendChild(node);
//From my research this should work I'm have an issue with:
parent.insertAfter(para. newDiv, element);
I put an alert after it and it never hits it so I'm assuming its 'not working
and I'm not geting end result
//I have logically written this out and given a lot of thought
I've been struggling with it for a couple of days on ad off.
Thank You,
Thanks in advance