I have a form that accepts a field(p_chg_semester).
I need to check the value of p_chg_semester to see if it exists in the string (field_string). For example.
If the sample below a value of '*G*' would be one of the valid entries.
field_string = '*A**B**C**D**F**G**H**I**J**K*';
<input type="text" name="p_chg_semester" onChange="IsValidSemester(this.value)">);
I need to check the value of p_chg_semester to see if it exists in the string (field_string). For example.
If the sample below a value of '*G*' would be one of the valid entries.
field_string = '*A**B**C**D**F**G**H**I**J**K*';
<input type="text" name="p_chg_semester" onChange="IsValidSemester(this.value)">);