This java script function will help you to validate the html data typed into the text box. It prints whether the data typed into the form is valid or not.
Features
a)The javascript function will help you to find whether data entered into textbox has valid HTML tags(<>) or not.
b)This can also be used for form validation, to check whether the form has valid html tag or not.
c)Just copy the code in to your page and use it.
Preview
Enter HTML data
Code
<!-- Script by hscripts.com -->
<!-- copyright of HIOX INDIA -->
<!-- more scripts @ http://www.hscripts.com -->
<script type="text/javascript">
function validate()
{
str=(document.getElementById('exp')).value;
if(str.match(/([\<])([^\>]{1,})*([\>])/i)==null)
alert("No HTML Tag");
else
alert("Contains HTML Tag");
}
</script>
<input type=text name=exp id=exp />
<input type=button value=Enter onClick="validate()">
<!-- Script by hscripts.com -->
For customization of this script or any script development, contact us at support@hscripts.com
Usage
Just copy the code and use it for free.
License
- The javascript (misspelled as java script) is given under GPL License
- i.e. Free use for those who use the codes as it is.
- Free, if your modification does not remove our copyright information and links.
- Click Here for detailed license information.
- You can purchase the script if your requirements does not meet our GPL License terms.