-2

I have created a english to hindi transliteration webpage . There are rules for mapping every hindi letter to its english equivalent. If user presses 'd' , I want to suggest some nearby letters . It would be great if I am able to create & remove buttons (which have associated onclick action) using javascript. Is that possible ?

user1371666
  • 445
  • 1
  • 5
  • 18

1 Answers1

0

steve graham - that worked for creating clickable buttons with asoociated action. ALso I Used this

function removechildren()
{   var node=document.getElementById("fooBar");
    node.innerHTML = "";
}

To remove all of them at once.

user1371666
  • 445
  • 1
  • 5
  • 18