function getEntry(time)
{
var newdiv = document.createElement("div");
if(time=='120')
{
var container = document.getElementById('require');
newdiv.innerHTML = "<tr id='a'><td><input type='radio' name='type' value='001' onchange='getRadioCheckedValue();' checked>Resume Writing<input type='hidden' name='service' id='1_59.95' value='Resume Writing'> </td><td><input type='hidden' name='price' value='59.95'>$59.95</td></tr>";
container.appendChild(newdiv);
}
i get nothing on the browser when i run this function…it works fine in firefox but noting happens on IE…no errors either.
can someone please explin how to fix this.
Thanks.
You also need to add
newdivtobody:I also suspect id value like
1_59.95with a point in between doesn’t seem to be all right at least for the IE.