Page Components JavaScript DHTML




Word Filter 2.0

.ip{border:#000000 solid 1px; width:80%}
.btn{border:#000000 solid 1px; background:#EFEFEF; font-weight:bold; cursor:hand}
.link{font-family:verdana,arial,helvetica; font-size:8pt; color:#FFFFFF}
.link:hover{font-family:verdana,arial,helvetica; font-size:8pt; color:#CCCCFF}



// Word Filter 2.0
// (c) 2002 Premshree Pillai
// Created : 29 September 2002
// http://www.qiksearch.com
// http://javascript.qik.cjb.net
// E-mail : qiksearch@rediffmail.com
var swear_words_arr=new Array("fuck","bloody","war","terror","ass");
var swear_alert_arr=new Array();
var swear_alert_count=0;
function reset_alert_count()
{
 swear_alert_count=0;
}
function wordFilter(form,fields)
{
  reset_alert_count();
  var compare_text;
  var fieldErrArr=new Array();
  var fieldErrIndex=0;
  for(var i=0; i  {
    eval('compare_text=document.' + form + '.' + fields[i] + '.value;');
    for(var j=0; j    {
      for(var k=0; k<(compare_text.length); k++)
      {
        if(swear_words_arr[j]==compare_text.substring(k,(k+swear_words_arr[j].length)).toLowerCase())
        {
          swear_alert_arr[swear_alert_count]=compare_text.substring(k,(k+swear_words_arr[j].length));
          swear_alert_count++;
          fieldErrArr[fieldErrIndex]=i;
          fieldErrIndex++;
        }
      }
    }
  }
  var alert_text="";
  for(var k=1; k<=swear_alert_count; k++)
  {
    alert_text+="\n" + "(" + k + ")  " + swear_alert_arr[k-1];
    eval('compare_text=document.' + form + '.' + fields[fieldErrArr[0]] + '.focus();');
    eval('compare_text=document.' + form + '.' + fields[fieldErrArr[0]] + '.select();');
  }
  if(swear_alert_count>0)
  {
    alert("The form cannot be submitted.\nThe following illegal words were found:\n_______________________________\n" + alert_text + "\n_______________________________");
    return false;
  }
  else
  {
    return true;
  }
}







  Word Filter 2.0
  
  

  
  
  
  
  
  
  
  
Name :
E-mail :
Subject :
Message

  
  
  
  

  
  
  

  
  This JavaScript is a "Word Filter". It is a type of form validator.
  When the user submits some text, the validator will check the text for words that has to be filtered.
  

The words that have to be filtered must be added to the array swear_words_arr. When the user types the text and hits the submit button, if the text contains any word that is present in the array swear_words_arr, the form will not be submitted.
  

Place the <script> in the <HEAD> section of your page.
  

In this version, you can validate multiple form fields. View the source and see the section marked <--BEGIN FORM-->
  

The script can be used for validation of swear words etc.
  

  
  © 2002 Premshree Pillai.