
Hi Sir, I want to know how can i check/uncheck input or radio button?

You can check/uncheck radio button by setting the 'checked' attribute to true or false as follows :
// Uncheck
$('#relement1').attr('checked', true);
// Uncheck
$('#relement1').attr('checked', false);
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.