I am developing a small application in which I want to create 20 radio buttons in one row.
How can I do this using jQuery?
Assuming that you have a div with the ID=myDivContainer try this:
for (i=0;i<=20;i++) { $("#myDivContainer").append('') }