Html Encoder script will help you to encode your html tags. Enter the html content to be encoded in the text box and click "Encode HTML Tags", Your content will be encoded.
Features
You can use this Encoder script to encode your html coding.
Html Encoding script will increase the security of the content.
This encoder script is simple and ease of use.
Just copy the code in to your page and use it.
Preview
Downloads
<script type="text/javascript"> function HTML() { var re = /(<)/gi; var rg = /(>)/gi; for (i=0; i < arguments.length; i++) { arguments[i].value=arguments[i].value.replace(re, "<") arguments[i].value=arguments[i].value.replace(rg, ">") } function clear() { document.myform.remove.value=''; } } document.onLoad="clear()"; </script> <form name="myform"> <textarea style="background-color:f0f0f0; border 1px border:1px solid #afc784;" name=remove rows=4 cols=40></textarea><br> <input type="button" value="Remove HTML Tags" onClick="HTML(this.form.remove)"> </form>