Skip to content

Instantly share code, notes, and snippets.

@khare-ashwini
Created April 16, 2014 15:39
Show Gist options
  • Save khare-ashwini/10895843 to your computer and use it in GitHub Desktop.
Save khare-ashwini/10895843 to your computer and use it in GitHub Desktop.
Channeli Response Form Filler
// Eases the monotonous task of filling response forms on Channeli, IITR
// Copy paste the following code in console
var score = 5 // can be 5,4,3,2,1 ; would be selected for all questions
$('input[type=radio]').each(function(){
if($(this).val() == score)
$(this).prop('checked',true);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment