Online tool for HML escaping, this tool replaces all occurences of < , > , ', " with corresponding html equivalents.
This tool is helpful for escaping javascript codes which are to be embeded in blogger templates. Just input your JS script or any string and get the HTML escaped output string.
Put here, your code for HTML escaping
Copy from here, you HTML replaced code.
Illustration of results:
Input Text:
Output Text:
Make your own HTML escape tool
Copy and save the following code on an HTML page and run it on the browser.
Input Box<br/>
<textarea id="iptxt" style="height: 300px; width: 500px;" onchange="javascript:escapeHTML()" onkeypress="javascript:escapeHTML()" onblur="javascript:escapeHTML()" ></textarea><br/><br/>
Output Box<br/>
<textarea id="optxt" readonly="true" style="height: 300px; width: 500px;"></textarea>
<script>
function escapeHTML(){
//alert('test');
var input_str=document.getElementById('iptxt').value;
input_str = input_str.replace(/</gi,"<");
input_str = input_str.replace(/>/gi,">");
input_str = input_str.replace(/'/gi,"'");
input_str = input_str.replace(/"/gi,""");
document.getElementById('optxt').innerHTML = input_str;
//alert(input_str);
}
</script>
HTML escape tool is brought to you by crozoom.com
This tool is helpful for escaping javascript codes which are to be embeded in blogger templates. Just input your JS script or any string and get the HTML escaped output string.
Put here, your code for HTML escaping
Copy from here, you HTML replaced code.
Illustration of results:
Input Text:
Example:
<script type="text/javascript"><!--
google_ad_client = "ca-test-446346363636363633";
/* PHP300X250 */
google_ad_slot = "Test084082";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
<script type="text/javascript"><!--
google_ad_client = "ca-test-446346363636363633";
/* PHP300X250 */
google_ad_slot = "Test084082";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
Output Text:
Example:
<script type="text/javascript"><!--
google_ad_client = "ca-test-446346363636363633";
/* PHP300X250 */
google_ad_slot = "Test084082";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
<script type="text/javascript"><!--
google_ad_client = "ca-test-446346363636363633";
/* PHP300X250 */
google_ad_slot = "Test084082";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
Make your own HTML escape tool
Copy and save the following code on an HTML page and run it on the browser.
Input Box<br/>
<textarea id="iptxt" style="height: 300px; width: 500px;" onchange="javascript:escapeHTML()" onkeypress="javascript:escapeHTML()" onblur="javascript:escapeHTML()" ></textarea><br/><br/>
Output Box<br/>
<textarea id="optxt" readonly="true" style="height: 300px; width: 500px;"></textarea>
<script>
function escapeHTML(){
//alert('test');
var input_str=document.getElementById('iptxt').value;
input_str = input_str.replace(/</gi,"<");
input_str = input_str.replace(/>/gi,">");
input_str = input_str.replace(/'/gi,"'");
input_str = input_str.replace(/"/gi,""");
document.getElementById('optxt').innerHTML = input_str;
//alert(input_str);
}
</script>
HTML escape tool is brought to you by crozoom.com