
on selection of a radio button mouse should move to a particular text box that needs to be filled. How?

Hi Friend,
Try the following code:
<html>
<head>
<script>
function set(){
var i=0;
if (document.getElementById('rad').checked){
document.form.text.focus();
return true;
}
}
</script>
</head>
<form name="form">
TextField: <input type="text" name="text"><br>
</form>
<input type="radio" name="rad" id="rad" onclick="set();">
</html>
Thanks

Hi,
Thank for the swift answer. I am new to Java coding. SO facing these kind of situation. I appreciate your swift response.
Thank you.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.