Index: /trunk/autoquest-htmlmonitor-test/src/test/resources/test.html
===================================================================
--- /trunk/autoquest-htmlmonitor-test/src/test/resources/test.html	(revision 1243)
+++ /trunk/autoquest-htmlmonitor-test/src/test/resources/test.html	(revision 1244)
@@ -37,4 +37,8 @@
       </tr>
       <tr>
+        <td class="label">input type text (unmonitored)</td>
+        <td><input type="text" class=" bla djg autoquest-unmonitored bdf"/></td>
+      </tr>
+      <tr>
         <td class="label">text area</td>
         <td><textarea style="width:600px;height:120px;"></textarea></td>
Index: /trunk/autoquest-htmlmonitor/src/main/js/autoquest-htmlmonitor.js
===================================================================
--- /trunk/autoquest-htmlmonitor/src/main/js/autoquest-htmlmonitor.js	(revision 1243)
+++ /trunk/autoquest-htmlmonitor/src/main/js/autoquest-htmlmonitor.js	(revision 1244)
@@ -524,4 +524,5 @@
     var eventObj = null;
     var tagName;
+    var unmonitored;
 
     if (!autoquestDestination) {
@@ -573,5 +574,12 @@
     tagName = getTagName(node);
     
-    if ("input_password" !== tagName) {
+    if (node.getAttribute && node.getAttribute("class")) {
+        unmonitored = node.getAttribute("class").indexOf("autoquest-unmonitored") >= 0;
+    }
+    else {
+        unmonitored = false;
+    }
+    
+    if (!unmonitored && ("input_password" !== tagName)) {
         if ((eventType === "onkeypress") ||
             (eventType === "onkeydown") ||
