I want to add div dynamically for particular html
Here, i will give you small example
<input id="radio1" type="radio" name="rad" value="rad" title='Yes' alt='yes'>
while clicking radio button, i need to add one div, like :
<div id='A1' class='redColourIndicatin'>
<input id="radio1" type="radio" name="rad" value="rad" title='Yes' alt='yes'>
</div>
Is it possible to add Div Id, after loading the page?
My intention is not to add only class to radio button. we need to some other manipulations also?
please give idea, how to add