Uncheck a checked box when the browser's Go Back button used

I know how to do this in jquery. There are two ways:

$(document).ready(function(){
$('input:checkbox').prop('checked',false);});

Code (markup):
or

$(document).ready(function(){
$('#yourcheckbox').prop('checked',false);});

Code (markup):
What would be an equivalent to this in pure javascript?

from JavaScript http://ift.tt/1QhsmMS
via IFTTT
Previous
Next Post »
Thanks for your comment