TalentLMS lets you block users from copy-pasting answers to free-text questions by adding a custom JavaScript code snippet to your active theme.
Here’s how to do it in a few steps:
1. Sign in to your TalentLMS account as Administrator and go to Home > Account & Settings.
2. Go to the Themes tab and, from the Theme drop-down list, choose your active theme.
3. Go to the Javascript (1) tab.
4. In the code area, paste the following JavaScript code:
$(document).ready(function () {
$('input[type=text],textarea').bind('copy paste', function (e) {
e.preventDefault();
});
});
5. Click Update to save your changes.