<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How to Submit  Teacher evaluation automatically VULMS]]></title><description><![CDATA[<ol>
<li>
<p dir="auto">Login to your VULMS you will see that page as shown below.<br />
<img src="https://i.imgur.com/Ok9vWl4.png" alt="a451845d-1544-482a-a18e-5c60d74748d8-image.png" class=" img-fluid img-markdown" /></p>
</li>
<li>
<p dir="auto">Press F12/Right Click menu to Select “inspect element”.<br />
<img src="https://i.imgur.com/r6fkHmk.png" alt="83bef65b-de40-4656-8600-63787c28ac2f-image.png" class=" img-fluid img-markdown" /></p>
</li>
<li>
<p dir="auto">Copy Below code, and paste it in the console Table Yellow Area.<br />
<img src="https://i.imgur.com/ie84R9g.png" alt="13ff251d-a898-4ea1-a79d-2f6cc0f68b85-image.png" class=" img-fluid img-markdown" /></p>
</li>
<li>
<p dir="auto">Teacher revelation form is auto filled. Press submit and have fun!</p>
</li>
</ol>
<p dir="auto"><strong>Code for Console:</strong></p>
<pre><code>var choices = ["Uncertain", "Agree", "Strongly Agree"] ;
var randomNum = Math.floor((Math.random()*choices.length));
var myChoice = choices[randomNum];
var labels = document.querySelectorAll('label');
var textareas = document.querySelectorAll('textarea.txt');
for (var i = 0; i &lt; labels.length; i++) {
if (labels[i].innerHTML == myChoice) {
document.getElementById(labels[i].getAttribute('for')).setAttribute('checked', '');
}}

for (var i = 0; i &lt; textareas.length; i++) {
textareas[i].innerHTML = 'I loved the course. learned a lot from it.  However, the content of the course needs to be updated..';
}
</code></pre>
]]></description><link>https://community.secnto.com//topic/779/how-to-submit-teacher-evaluation-automatically-vulms</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 19:53:21 GMT</lastBuildDate><atom:link href="https://community.secnto.com//topic/779.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 06 Dec 2019 13:47:34 GMT</pubDate><ttl>60</ttl></channel></rss>